add cursor not allowed on Provider

This commit is contained in:
Wikzyy
2025-04-11 10:26:56 +07:00
parent 3613fd58b9
commit 158958d2dc
2 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@ const AddDialog = () => {
<label className="form-label flex items-center gap-1 max-w-56"> <label className="form-label flex items-center gap-1 max-w-56">
Agent Name Agent Name
</label> </label>
<Input type="text" placeholder="Type Agent Only" readOnly /> <Input type="text" placeholder="Type Agent Only" readOnly className='cursor-not-allowed' />
</div> </div>
</div> </div>
)} )}

View File

@ -376,7 +376,7 @@ const EditDialog = () => {
<label className="form-label flex items-center gap-1 max-w-56"> <label className="form-label flex items-center gap-1 max-w-56">
Agent Name Agent Name
</label> </label>
<Input type="text" placeholder="Type Agent Only" readOnly /> <Input type="text" placeholder="Type Agent Only" readOnly className='cursor-not-allowed' />
</div> </div>
</div> </div>
)} )}