mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-26 23:18:39 +00:00
Fix a kokoism
Move autocorrect attribute to correct input
This commit is contained in:
parent
88f8eec8a0
commit
4098a710c3
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ else
|
||||||
<div class="ui blue segment">
|
<div class="ui blue segment">
|
||||||
<h3>@command.Name()</h3>
|
<h3>@command.Name()</h3>
|
||||||
<form>
|
<form>
|
||||||
<input autocomplete="off" type="text" name="command" style="display: none;" value="@command.FirstAlias">
|
<input type="text" name="command" style="display: none;" value="@command.FirstAlias">
|
||||||
@if (command.RequiredArgs() > 0)
|
@if (command.RequiredArgs() > 0)
|
||||||
{
|
{
|
||||||
<div class="ui left action input" style="width: 100%">
|
<div class="ui left action input" style="width: 100%">
|
||||||
|
@ -59,7 +59,7 @@ else
|
||||||
<i class="play icon"></i>
|
<i class="play icon"></i>
|
||||||
Execute
|
Execute
|
||||||
</button>
|
</button>
|
||||||
<input type="text" name="args" placeholder="@command.Arguments()">
|
<input type="text" name="args" placeholder="@command.Arguments()" autocomplete="off">
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue