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

@@ -93,7 +93,7 @@ function CreateProgramKemiskinan() {
<TextInput
label="Judul Program"
placeholder="Masukkan judul program"
value={programState.create.form.nama}
defaultValue={programState.create.form.nama}
onChange={(val) => (programState.create.form.nama = val.target.value)}
required
/>
@@ -128,7 +128,7 @@ function CreateProgramKemiskinan() {
<Group grow>
<TextInput
type="number"
value={programState.create.form.statistik.jumlah}
defaultValue={programState.create.form.statistik.jumlah}
onChange={(val) =>
(programState.create.form.statistik.jumlah = val.target.value)
}
@@ -138,7 +138,7 @@ function CreateProgramKemiskinan() {
/>
<TextInput
type="number"
value={programState.create.form.statistik.tahun}
defaultValue={programState.create.form.statistik.tahun}
onChange={(val) =>
(programState.create.form.statistik.tahun = val.target.value)
}