adminforth 2.45.0-next.7 → 2.45.0-next.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</div>
|
|
34
34
|
</div>
|
|
35
35
|
|
|
36
|
-
<hr class="border-t border-gray-
|
|
36
|
+
<hr class="border-t-2 border-gray-300 dark:border-gray-700 my-6">
|
|
37
37
|
|
|
38
38
|
<div class="flex justify-center gap-4 w-full">
|
|
39
39
|
<button @click="()=>{modalStore.onAcceptFunction(false);modalStore.togleModal()}" type="button" class="flex-1 py-2.5 px-4 text-sm font-medium text-gray-700 bg-white rounded-lg border border-gray-200 hover:bg-gray-50 focus:ring-4 focus:ring-gray-100 transition-all dark:bg-gray-800 dark:text-gray-300 dark:border-gray-600 dark:hover:bg-gray-700">
|
|
@@ -582,7 +582,7 @@ async function onClick(e: any, row: any) {
|
|
|
582
582
|
|
|
583
583
|
async function deleteRecord(row: any) {
|
|
584
584
|
const data = await confirm({
|
|
585
|
-
|
|
585
|
+
title: t('Are you sure you want to delete this item?'),
|
|
586
586
|
yes: t('Delete'),
|
|
587
587
|
no: t('Cancel'),
|
|
588
588
|
});
|
|
@@ -310,7 +310,7 @@ const otherColumns = computed(() => {
|
|
|
310
310
|
|
|
311
311
|
async function deleteRecord() {
|
|
312
312
|
const data = await confirm({
|
|
313
|
-
|
|
313
|
+
title: t('Are you sure you want to delete this item?'),
|
|
314
314
|
yes: t('Delete'),
|
|
315
315
|
no: t('Cancel'),
|
|
316
316
|
});
|