From 97ecbbcab627692efb6fba55d2098adb308ee9bc Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Tue, 30 Jun 2020 11:25:34 +0300 Subject: [PATCH] Disable buttons as well --- src/components/calendar/Calendar.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index e96796b97..b4c475916 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -8,7 +8,7 @@
-
@@ -22,7 +22,7 @@
@@ -312,7 +312,7 @@ export default { this.updateCurrentMetaData(); }, mounted() { - if (this.inline) { + if (this.inline && !this.$attrs.disabled) { this.initFocusableCell(); } },