diff --git a/frontend/src/components/forms/DeckEditor.vue b/frontend/src/components/forms/DeckEditor.vue index 69a1e99..9c52ea6 100644 --- a/frontend/src/components/forms/DeckEditor.vue +++ b/frontend/src/components/forms/DeckEditor.vue @@ -14,13 +14,14 @@ label="Edit Deck" :value="list" rows="35" - hint="Change card counts and/or serial numbers. Names will be updated automatically." + hint="Change card counts and/or serial numbers. Names will be updated accordingly!" style="font-family: monospace" + @input="checked = false" > - + cancel cancel @@ -157,6 +158,12 @@ export default { return retval }, + close() { + this.checked = false + + this.$emit('input', false) + }, + check() { let new_deck = this.parse_deck(this.$refs.textarea.lazyValue)