Add tooltip to UseShellExecute input

This commit is contained in:
Pat Hartl 2023-08-11 15:23:38 -05:00
parent 6ecf8a42f3
commit 934ffd19b8

View file

@ -87,8 +87,16 @@
<FormItem Label="Working Directory"> <FormItem Label="Working Directory">
<Input @bind-Value="@context.WorkingDirectory" /> <Input @bind-Value="@context.WorkingDirectory" />
</FormItem> </FormItem>
<FormItem Label="Use Shell Execute"> <FormItem>
<Switch @bind-Checked="context.UseShellExecute" /> <LabelTemplate>
Use Shell Execute
<Tooltip Title="This option specifies whether you would like to run the server using the shell. Some servers may require this as they will have a UI or won't output logs to stdout">
<Icon Type="@IconType.Outline.QuestionCircle" Theme="@IconThemeType.Outline" />
</Tooltip>
</LabelTemplate>
<ChildContent>
<Switch @bind-Checked="context.UseShellExecute" />
</ChildContent>
</FormItem> </FormItem>
<FormItem Label="Autostart"> <FormItem Label="Autostart">
<Switch @bind-Checked="context.Autostart" /> <Switch @bind-Checked="context.Autostart" />