diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-07-16 15:44:23 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-07-16 15:44:23 +0700 |
| commit | 60d0eda46a7a09a70285350cf19e09c40da05887 (patch) | |
| tree | e0ba7050cbdfffcaa46a0c876636719ad487cf53 | |
| parent | 87f4b126a5d487aef2170a1f2147618bbcb0ad70 (diff) | |
<iman> add mobile note
| -rw-r--r-- | src/lib/quotation/components/Quotation.jsx | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/lib/quotation/components/Quotation.jsx b/src/lib/quotation/components/Quotation.jsx index 86b0664d..df234dc2 100644 --- a/src/lib/quotation/components/Quotation.jsx +++ b/src/lib/quotation/components/Quotation.jsx @@ -452,8 +452,25 @@ const Quotation = () => { </Link>{' '} yang berlaku </p> + <hr className='my-4 border-gray_r-6' /> + + <div className='flex gap-x-2 justify-start mb-4'> + <div className=''>Note</div> + {isApproval && ( + <div className='text-caption-1 text-red-500 items-center flex'>*harus diisi</div> + )} + </div> + <div className='text-caption-2 text-gray_r-11'> + <textarea + rows="4" + cols="50" + className={`w-full p-1 rounded border border-gray_r-6`} + onChange={(e) => setselectedNote_websiteText(e.target.value)} + /> + </div> </div> - + + <Divider /> <div className='flex gap-x-3 p-4'> |
