# HG changeset patch # User Thomas Junk # Date 1547202814 -3600 # Node ID 88b8da51394451d1194c2a24251d1abf7145cd5e # Parent ad9622a3f75171e7f5dc09b5b4122474ee782fb5 deactivate delete and edit action during editing diff -r ad9622a3f751 -r 88b8da513944 client/src/components/importschedule/Importschedule.vue --- a/client/src/components/importschedule/Importschedule.vue Fri Jan 11 11:23:05 2019 +0100 +++ b/client/src/components/importschedule/Importschedule.vue Fri Jan 11 11:33:34 2019 +0100 @@ -57,6 +57,7 @@ { this.getSchedules(); + displayInfo({ + title: this.$gettext("Imports"), + message: this.$gettext("Deleted import: #") + index + }); }) .catch(error => { const { status, data } = error.response; @@ -195,6 +202,10 @@ computed: { ...mapState("application", ["showSidebar"]), ...mapState("imports", ["schedules", "importScheduleDetailVisible"]), + activeStyle() { + const color = this.importScheduleDetailVisible ? "#aeaeae" : "#000000"; + return { color: color }; + }, spacerStyle() { return [ "spacer ml-3",