From 15407e8acc9e77db6a9ae8725f2dea6816e52bf7 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Tue, 16 Jul 2024 09:54:50 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=84=E0=B8=B3?= =?UTF-8?q?=E0=B8=9C=E0=B8=B4=E0=B8=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../04_system/components/cardBackupRestore.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/modules/04_system/components/cardBackupRestore.vue b/src/modules/04_system/components/cardBackupRestore.vue index a5df9b95..28f6bb14 100644 --- a/src/modules/04_system/components/cardBackupRestore.vue +++ b/src/modules/04_system/components/cardBackupRestore.vue @@ -78,7 +78,7 @@ const columns = computed(() => { }); /** - * function สร้างรายการข้อมูสำรอง + * function สร้างรายการข้อมูลสำรอง */ function onCreateBackup() { dialogConfirm( @@ -87,13 +87,13 @@ function onCreateBackup() { showLoader(); await createBackUp(); }, - "ยืนยันการสร้างข้อมูสำรอง", - "ต้องการยืนยันการสร้างข้อมูสำรองใช่หรือไม่?" + "ยืนยันการสร้างข้อมูลสำรอง", + "ต้องการยืนยันการสร้างข้อมูลสำรองใช่หรือไม่?" ); } /** - * function ลบรายการข้อมูสำรอง + * function ลบรายการข้อมูลสำรอง * @param id รายการสำรอง */ function onDelete(name: string) { @@ -104,8 +104,8 @@ function onDelete(name: string) { } /** - * function คืนค่าข้อมูสำรอง - * @param id ข้อมูสำรอง + * function คืนค่าข้อมูลสำรอง + * @param id ข้อมูลสำรอง */ function onRestore(name: string) { dialogConfirm( @@ -113,8 +113,8 @@ function onRestore(name: string) { async () => { await restore(name); }, - "ยืนยันการคืนค่าข้อมูสำรอง", - "ต้องการยืนยันการคืนค่าข้อมูสำรองนี้ใช่หรือไม่?" + "ยืนยันการคืนค่าข้อมูลสำรอง", + "ต้องการยืนยันการคืนค่าข้อมูลสำรองนี้ใช่หรือไม่?" ); }