diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-07-16 08:53:00 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-07-16 08:53:00 +0000 |
| commit | 0b2384079c06596d39295de52bf604bfb6449105 (patch) | |
| tree | 6bc26a7729a16a6181355e1131320543fcde389d /src/lib/quotation/components/Quotation.jsx | |
| parent | 492548d22a4f7b14e092c4d76fd47cbe6856cbf4 (diff) | |
| parent | 60d0eda46a7a09a70285350cf19e09c40da05887 (diff) | |
Merged in Feature/step_approval (pull request #166)
<iman> add mobile note
Diffstat (limited to 'src/lib/quotation/components/Quotation.jsx')
| -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'> |
