Skip to content

Commit

Permalink
default switch branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrch committed Aug 19, 2024
1 parent 3a01195 commit d6e57ab
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,10 +418,12 @@ private void PerformActionsOnField(XElement field, string fieldDescriptor, strin
case TcaDirective.ConvertToRichText:
{
field
.EnsureElement(FieldElemSettings, settings =>
{
settings.EnsureElement("ConfigurationName", e => e.Value = "Kentico.Administration.StructuredContent");
});
.EnsureElement(FieldElemSettings, settings => settings.EnsureElement("ConfigurationName", e => e.Value = "Kentico.Administration.StructuredContent"));
break;
}
// ReSharper disable once RedundantEmptySwitchSection - not redundant, IDE0010 required to specify default switch branch
default:
{
break;
}
}
Expand Down

0 comments on commit d6e57ab

Please sign in to comment.