Fix All Text Input User & Admin, fix deskripsi detail break word

This commit is contained in:
2025-09-29 14:06:04 +08:00
parent 2a26db6e17
commit dbd56a1493
319 changed files with 965 additions and 817 deletions

View File

@@ -69,7 +69,7 @@ function CreateDataLingkunganDesa() {
<TextInput
label={<Text fw="bold" fz="sm">Nama Data Lingkungan Desa</Text>}
placeholder="Masukkan nama data lingkungan desa"
value={stateCreate.create.form.name || ''}
defaultValue={stateCreate.create.form.name || ''}
onChange={(val) => (stateCreate.create.form.name = val.target.value)}
required
/>
@@ -86,7 +86,7 @@ function CreateDataLingkunganDesa() {
<TextInput
label={<Text fw="bold" fz="sm">Jumlah Data Lingkungan Desa</Text>}
placeholder="Masukkan jumlah data lingkungan desa"
value={stateCreate.create.form.jumlah || ''}
defaultValue={stateCreate.create.form.jumlah || ''}
onChange={(e) => (stateCreate.create.form.jumlah = e.currentTarget.value)}
required
/>