This commit is contained in:
Wikzyy
2025-03-27 22:34:24 +07:00
parent 91a23e078f
commit c382035330

View File

@ -207,7 +207,7 @@ const EditDialog = () => {
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Wallet Name<span className="text-red-500">*</span>
Wallet Name
</label>
<Input
type="text"
@ -221,7 +221,7 @@ const EditDialog = () => {
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Description<span className="text-red-500">*</span>
Description
</label>
<Input
type="text"
@ -235,7 +235,7 @@ const EditDialog = () => {
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Status<span className="text-red-500">*</span>
Status
</label>
<Select
value={formField.status}
@ -255,7 +255,7 @@ const EditDialog = () => {
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Currency<span className="text-red-500">*</span>
Currency
</label>
<Select
value={formField.currency_id}
@ -277,9 +277,7 @@ const EditDialog = () => {
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Groups<span className="text-red-500">*</span>
</label>
<label className="form-label flex items-center gap-1 max-w-56">Groups</label>
<Input type="text" value={formField.group} readOnly />
</div>
</div>