From 3dba549c1c42a6281e3fc2e8180c4bcfbeff5d24 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Tue, 12 Mar 2024 11:52:38 +0700 Subject: [PATCH] fix(profile/insignia): note not assign on edit --- src/modules/04_registry/components/Insignia.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/04_registry/components/Insignia.vue b/src/modules/04_registry/components/Insignia.vue index c57a637d6..9c9af62f4 100644 --- a/src/modules/04_registry/components/Insignia.vue +++ b/src/modules/04_registry/components/Insignia.vue @@ -1356,6 +1356,7 @@ const selectData = async (props: DataProps) => { refCommandDateInput.value = props.row.refCommandDate ? convertDateDisplay(props.row.refCommandDate as Date) : ""; + note.value = props.row.note; await checkRowPage(); };