Add tooltip to UseShellExecute input
This commit is contained in:
parent
6ecf8a42f3
commit
934ffd19b8
1 changed files with 10 additions and 2 deletions
|
@ -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" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue