Fix a kokoism

Move autocorrect attribute to correct input
This commit is contained in:
Slendy 2023-06-29 00:39:13 -05:00
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"> <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