Fix a kokoism

Move autocorrect attribute to correct input
This commit is contained in:
Slendy 2023-06-29 00:39:13 -05:00
parent 88f8eec8a0
commit 4098a710c3
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -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