From f211f1dde6c14f074792de33ec07bc73a3341e40 Mon Sep 17 00:00:00 2001 From: xds Date: Tue, 28 Oct 2025 15:40:17 +0300 Subject: [PATCH] + confirm dialog + loginpage throwout --- src/components/settings/RecurrentyCreateUpdate.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/settings/RecurrentyCreateUpdate.vue b/src/components/settings/RecurrentyCreateUpdate.vue index 0df86e9..300f452 100644 --- a/src/components/settings/RecurrentyCreateUpdate.vue +++ b/src/components/settings/RecurrentyCreateUpdate.vue @@ -190,9 +190,8 @@ onMounted(async () => { console.log('deleteRecurrent2') if (tgApp.initData) { console.log('deleteRecurrent3') - tgApp.showConfirm(deleteAlertMessage.value, async (bnt_id) => { - console.log(bnt_id) - if (bnt_id === 'ok') { + tgApp.showConfirm(deleteAlertMessage.value, async (confirmed) => { + if (confirmed) { console.log("recurrent id is deleted") await deleteRecurrent() }