Fix QC Kak Inno 24 Okt 25

Fix QC Kak Ayu 24 Okt 25
Fix QC Keano 24 Okt 25
Fix Detail Lowongan Kerja
This commit is contained in:
2025-10-27 22:15:55 +08:00
parent f82c7b86e0
commit ed371bd0d9
37 changed files with 751 additions and 710 deletions

View File

@@ -183,7 +183,7 @@ function EditArtikelKesehatan() {
{/* Gambar */}
<Box>
<Text fw="bold" fz="sm" mb={6}>
Gambar Berita
Gambar Artikel Kesehatan
</Text>
<Dropzone
onDrop={handleFileChange}
@@ -240,15 +240,15 @@ function EditArtikelKesehatan() {
/>
{/* Pendahuluan */}
<InputText
label="Pendahuluan"
value={formData.introduction.content}
onChange={(value) =>
setFormData((prev) => ({ ...prev, introduction: { content: value } }))
}
placeholder="Masukkan pendahuluan"
/>
<Box>
<Text fw="bold">Pendahuluan</Text>
<EditEditor
value={formData.introduction.content}
onChange={(value) =>
setFormData((prev) => ({ ...prev, introduction: { ...prev.introduction, content: value } }))
}
/>
</Box>
{/* Gejala */}
<Box>
<Text fw="bold">Gejala</Text>

View File

@@ -115,7 +115,7 @@ function CreateArtikelKesehatan() {
<Stack gap="md">
<Box>
<Text fw="bold" fz="sm" mb={6}>
Gambar Berita
Gambar Artikel Kesehatan
</Text>
<Dropzone
onDrop={(files) => {
@@ -163,7 +163,7 @@ function CreateArtikelKesehatan() {
</Box>
)}
</Box>
<TextInput
label={"Judul"}
placeholder="Masukkan judul"
@@ -182,16 +182,15 @@ function CreateArtikelKesehatan() {
}}
required
/>
<TextInput
label={"Pendahuluan"}
placeholder="Masukkan pendahuluan"
required
defaultValue={stateArtikelKesehatan.create.form.introduction.content}
onChange={(e) => {
stateArtikelKesehatan.create.form.introduction.content = e.target.value;
}}
/>
<Box>
<Text fz="sm" fw="bold">Pendahuluan</Text>
<CreateEditor
value={stateArtikelKesehatan.create.form.introduction.content}
onChange={(e) => {
stateArtikelKesehatan.create.form.introduction.content = e;
}}
/>
</Box>
{/* Gejala */}
<Box>
<Text fz="md" fw="bold">Gejala</Text>