From e98ca357c43e37fdc3bed6f15978e0182cca3be9 Mon Sep 17 00:00:00 2001 From: marsellavaleria19 Date: Thu, 27 Feb 2025 14:49:32 +0700 Subject: [PATCH 1/2] fix(create instruction) : add limit character instruction note. --- components/Aduan/Dialog/CreateIkp/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Aduan/Dialog/CreateIkp/index.vue b/components/Aduan/Dialog/CreateIkp/index.vue index e14232a7..7445b4f9 100644 --- a/components/Aduan/Dialog/CreateIkp/index.vue +++ b/components/Aduan/Dialog/CreateIkp/index.vue @@ -182,13 +182,13 @@ v-model="instructionNote" label="Keterangan Instruksi Aduan" placeholder="Masukkan deskripsi" - maxlength="255" + maxlength="1000" class="pt-3" :error-message="errors[0]" />

- Tersisa {{ 255 - instructionNote.length }} karakter + Tersisa {{ 1000 - instructionNote.length }} karakter

From 46e0af66ab625a303b2747f07de79ad143af3425 Mon Sep 17 00:00:00 2001 From: marsellavaleria19 Date: Thu, 27 Feb 2025 15:01:58 +0700 Subject: [PATCH 2/2] fix(form add complaint) : add limit report content --- .../Dialog/AddComplaint/Form/InformationComplaint/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Aduan/Dialog/AddComplaint/Form/InformationComplaint/index.vue b/components/Aduan/Dialog/AddComplaint/Form/InformationComplaint/index.vue index 58782c0b..3e02a8a3 100644 --- a/components/Aduan/Dialog/AddComplaint/Form/InformationComplaint/index.vue +++ b/components/Aduan/Dialog/AddComplaint/Form/InformationComplaint/index.vue @@ -85,13 +85,13 @@ placeholder="Masukkan Isi Laporan" label="Isi Laporan" name="Isi Laporan" - maxlength="255" + maxlength="1000" :error-message="errors[0]" />

Tersisa - {{ 255 - description.length }} karakter + {{ 1000 - description.length }} karakter