fix: admin tags - persist close confirm dialog state

This commit is contained in:
NGPixel 2020-02-14 21:50:17 -05:00
parent 56235c6354
commit ea5027cb2e
2 changed files with 1 additions and 1 deletions

View File

@ -158,6 +158,7 @@ export default {
} catch (err) { } catch (err) {
this.$store.commit('pushGraphError', err) this.$store.commit('pushGraphError', err)
} }
this.deleteTagDialog = false
this.$store.commit(`loadingStop`, 'admin-tags-delete') this.$store.commit(`loadingStop`, 'admin-tags-delete')
}, },
async saveTag(tag) { async saveTag(tag) {

View File

@ -5,7 +5,6 @@ const compression = require('compression')
const express = require('express') const express = require('express')
const favicon = require('serve-favicon') const favicon = require('serve-favicon')
const http = require('http') const http = require('http')
const https = require('https')
const Promise = require('bluebird') const Promise = require('bluebird')
const fs = require('fs-extra') const fs = require('fs-extra')
const _ = require('lodash') const _ = require('lodash')