diff --git a/src/modules/04_registry/components/Discipline.vue b/src/modules/04_registry/components/Discipline.vue index ecd3bfedf..d87365b21 100644 --- a/src/modules/04_registry/components/Discipline.vue +++ b/src/modules/04_registry/components/Discipline.vue @@ -70,6 +70,7 @@ :error="dayChecked" error-message="กรุณากรอก วัน/เดือน/ปี" :rules="[(val) => !!val || `${'กรุณากรอก วัน/เดือน/ปี'}`]" + hide-bottom-space /> ([]); const Ops = ref({ prefixOps: [], statusOps: [ + { + id: "prefix", + name: "เปลี่ยนคำนำหน้าชื่อ", + }, { id: "firstName", name: "เปลี่ยนชื่อ", @@ -405,6 +409,10 @@ const Ops = ref({ const OpsFilter = ref({ prefixOps: [], statusOps: [ + { + id: "prefix", + name: "เปลี่ยนคำนำหน้าชื่อ", + }, { id: "firstName", name: "เปลี่ยนชื่อ", diff --git a/src/stores/mixin.ts b/src/stores/mixin.ts index 1150d670f..439f60251 100644 --- a/src/stores/mixin.ts +++ b/src/stores/mixin.ts @@ -818,6 +818,8 @@ export const useCounterMixin = defineStore("mixin", () => { const typeChangeName = (val: string) => { switch (val) { + case "prefix": + return "เปลี่ยนคำนำหน้าชื่อ"; case "firstName": return "เปลี่ยนชื่อ"; case "lastName":