Add job delivery details expanded to accept 499 characters

This commit is contained in:
victorAnumudu
2023-09-22 13:17:45 +01:00
parent f302ca80d7
commit f2475ddd88
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -225,7 +225,7 @@ function JobListPopout({ details, onClose, situation }) {
<div className="my-3 md:flex">
<Detail
label="Created"
value={new Date(details?.created).toDateString()}//{`Dummy, no value found for created!`}
value={new Date(details?.created).toDateString()}
/>
</div>
@@ -234,8 +234,8 @@ function JobListPopout({ details, onClose, situation }) {
Delivery Detail
</label>
<textarea
className={`p-1 w-full text-sm text-slate-900 dark:text-white bg-transparent outline-none border border-slate-300 rounded-md`}
rows="5"
className={`p-2 w-full text-sm text-slate-900 dark:text-white bg-transparent outline-none border border-slate-300 rounded-md`}
rows="10"
style={{ resize: "none" }}
value={textArea}
onChange={handleInputChange}