File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
13/umbraco-ui-builder/actions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Sometimes you may need to collect further user input before you can perform an a
5656
5757```` csharp
5858// Example
59- public class MyAction : Action <MyBulkdActionSettings , ActionResult >
59+ public class MyAction : Action <MyActionSettings , ActionResult >
6060{
6161 public override string Icon => " icon-settings" ;
6262 public override string Alias => " myaction" ;
@@ -65,9 +65,9 @@ public class MyAction : Action<MyBulkdActionSettings, ActionResult>
6565
6666 public override void Configure (SettingsConfigBuilder <MyActionSettings > settingsConfig )
6767 {
68- settingsConfig .AddFielset (" General" , fieldsetConfig => fieldsetConfig
68+ settingsConfig .AddFieldset (" General" , fieldsetConfig => fieldsetConfig
6969 .AddField (s => s .RecipientName ).SetLabel (" Recipient Name" )
70- .AddField (s => s .RecipientEmail ).SetLabel (" Recipient Email" ))
70+ .AddField (s => s .RecipientEmail ).SetLabel (" Recipient Email" ));
7171 }
7272
7373 public override ActionResult Execute (string collectionAlias , object [] entityIds , MyActionSettings settings )
You can’t perform that action at this time.
0 commit comments