From c8c4d8fdb35bff98a242c809ba1acb923f28b882 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 12 Aug 2024 07:36:42 +0100 Subject: [PATCH] Bug 37605: Convert dialog to modal markup This converts the vue Dialog component to use Boostrap Modal markup to increase consistency with the rest of Koha. --- .../prog/js/vue/components/Dialog.vue | 295 ++++++++++-------- 1 file changed, 173 insertions(+), 122 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue index 960c3075c7f..b7aa8674a48 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue @@ -1,75 +1,173 @@ @@ -77,6 +175,7 @@ import { inject } from "vue" import { storeToRefs } from "pinia" import flatPickr from "vue-flatpickr-component" + export default { data() { return { @@ -84,7 +183,7 @@ export default { } }, methods: { - submit: function (e) { + submit() { if ( this.confirmation.inputs && this.confirmation.inputs.filter( @@ -130,65 +229,17 @@ export default { -- 2.46.0