sharing to groups, shaing icon opens boarddetails, enter creates card or stack

Signed-off-by: Jakob <jakob.roehrl@web.de>
This commit is contained in:
Jakob
2019-07-12 14:22:23 +02:00
committed by Julius Härtl
parent 10b7d8b335
commit 70d3fba187
4 changed files with 11 additions and 13 deletions

View File

@@ -49,7 +49,7 @@
<label for="new-stack-input-main" class="hidden-visually">Add a new card</label>
<input id="new-stack-input-main" v-model="newCardTitle" type="text"
class="no-close"
placeholder="Add a new card">
placeholder="Add a new card" @keyup.enter="clickAddCard()">
<input class="icon-confirm" type="button" title="Submit"
@click="clickAddCard()">
</form>
@@ -120,7 +120,7 @@ export default {
boardId: this.stack.boardId
}
this.$store.dispatch('addCard', newCard)
}
},
}
}
</script>