mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-24 14:11:29 +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">
|
||||
<h3>@command.Name()</h3>
|
||||
<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)
|
||||
{
|
||||
<div class="ui left action input" style="width: 100%">
|
||||
|
@ -59,7 +59,7 @@ else
|
|||
<i class="play icon"></i>
|
||||
Execute
|
||||
</button>
|
||||
<input type="text" name="args" placeholder="@command.Arguments()">
|
||||
<input type="text" name="args" placeholder="@command.Arguments()" autocomplete="off">
|
||||
</div>
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue