แก้คำผิด

This commit is contained in:
Warunee Tamkoo 2024-07-16 09:54:50 +07:00
parent 3574330438
commit 15407e8acc

View file

@ -78,7 +78,7 @@ const columns = computed(() => {
}); });
/** /**
* function สรางรายการขอมสำรอง * function สรางรายการขอมสำรอง
*/ */
function onCreateBackup() { function onCreateBackup() {
dialogConfirm( dialogConfirm(
@ -87,13 +87,13 @@ function onCreateBackup() {
showLoader(); showLoader();
await createBackUp(); await createBackUp();
}, },
"ยืนยันการสร้างข้อมูสำรอง", "ยืนยันการสร้างข้อมูสำรอง",
"ต้องการยืนยันการสร้างข้อมูสำรองใช่หรือไม่?" "ต้องการยืนยันการสร้างข้อมูสำรองใช่หรือไม่?"
); );
} }
/** /**
* function ลบรายการขอมสำรอง * function ลบรายการขอมสำรอง
* @param id รายการสำรอง * @param id รายการสำรอง
*/ */
function onDelete(name: string) { function onDelete(name: string) {
@ -104,8 +104,8 @@ function onDelete(name: string) {
} }
/** /**
* function นคาขอมสำรอง * function นคาขอมสำรอง
* @param id อมสำรอง * @param id อมสำรอง
*/ */
function onRestore(name: string) { function onRestore(name: string) {
dialogConfirm( dialogConfirm(
@ -113,8 +113,8 @@ function onRestore(name: string) {
async () => { async () => {
await restore(name); await restore(name);
}, },
"ยืนยันการคืนค่าข้อมูสำรอง", "ยืนยันการคืนค่าข้อมูสำรอง",
"ต้องการยืนยันการคืนค่าข้อมูสำรองนี้ใช่หรือไม่?" "ต้องการยืนยันการคืนค่าข้อมูสำรองนี้ใช่หรือไม่?"
); );
} }