lavoce #2

Merged
yogiedigital merged 118 commits from lavoce into main 2025-10-20 04:06:02 +00:00
Showing only changes of commit f049902d2c - Show all commits

View File

@@ -151,8 +151,8 @@ const ListDevice = memo(function ListDevice(props) {
const showDeleteDialog = (param) => { const showDeleteDialog = (param) => {
NotifConfirmDialog({ NotifConfirmDialog({
icon: 'question', icon: 'question',
title: 'Konfirmasi', title: 'Konfirmasi Hapus',
message: 'Apakah anda yakin hapus data "' + param.device_name + '" ?', message: 'Device "' + param.device_name + '" akan dihapus?',
onConfirm: () => handleDelete(param.device_id), onConfirm: () => handleDelete(param.device_id),
onCancel: () => props.setSelectedData(null), onCancel: () => props.setSelectedData(null),
}); });