Fix missing readonly attribute on textarea

This commit is contained in:
Willian Mitsuda 2021-07-19 03:15:43 -03:00
parent 261847bec1
commit 6bf905d33a
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ const Logs: React.FC<LogsProps> = ({ txData }) => (
<textarea <textarea
className="w-full h-20 bg-gray-50 font-mono focus:outline-none border rounded p-2" className="w-full h-20 bg-gray-50 font-mono focus:outline-none border rounded p-2"
value={l.data} value={l.data}
readOnly
/> />
</div> </div>
</div> </div>