summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-10-07 16:18:42 +0100
committerPhil Hughes <me@iamphill.com>2016-11-04 10:25:47 +0000
commit277712cc670684ed6df162f810f860215da2a7ee (patch)
tree0fcf7dd5e19cb0d66bad60505cfca422e28d3a0f /app/assets/javascripts/boards
parent957744dab4297f66dc70c1727fe2cf5282d2ea5a (diff)
downloadgitlab-ce-277712cc670684ed6df162f810f860215da2a7ee.tar.gz
Creates new list from a new labelissue-board-new-label-new-list
Closes #23026
Diffstat (limited to 'app/assets/javascripts/boards')
-rw-r--r--app/assets/javascripts/boards/components/new_list_dropdown.js.es613
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/javascripts/boards/components/new_list_dropdown.js.es6 b/app/assets/javascripts/boards/components/new_list_dropdown.js.es6
index fe1a6dc7ea0..14f618fd5d5 100644
--- a/app/assets/javascripts/boards/components/new_list_dropdown.js.es6
+++ b/app/assets/javascripts/boards/components/new_list_dropdown.js.es6
@@ -2,6 +2,19 @@
$(() => {
const Store = gl.issueBoards.BoardsStore;
+ $(document).off('created.label').on('created.label', (e, label) => {
+ Store.new({
+ title: label.title,
+ position: Store.state.lists.length - 2,
+ list_type: 'label',
+ label: {
+ id: label.id,
+ title: label.title,
+ color: label.color
+ }
+ });
+ });
+
$('.js-new-board-list').each(function () {
const $this = $(this);
new gl.CreateLabelDropdown($this.closest('.dropdown').find('.dropdown-new-label'), $this.data('namespace-path'), $this.data('project-path'));