summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2020-05-24 02:13:55 +0300
committerGitHub <noreply@github.com>2020-05-24 02:13:55 +0300
commit3f16bf6054d6666db091ae4d60334c7cbe88da67 (patch)
tree76f31d4e682be4b5d40f59f982372fbf6796847e /client
parent6774b9e905981033ff7e20237363f2d080eaea70 (diff)
parent24b21d23bab45a5fabffbe905986271a1677b73e (diff)
downloadwekan-3f16bf6054d6666db091ae4d60334c7cbe88da67.tar.gz
wekan-3f16bf6054d6666db091ae4d60334c7cbe88da67.tar.bz2
wekan-3f16bf6054d6666db091ae4d60334c7cbe88da67.zip
Merge pull request #3109 from marc1006/issue_3107
Set '*' as default value for swimlane and list name in card move action
Diffstat (limited to 'client')
-rw-r--r--client/components/rules/actions/boardActions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/rules/actions/boardActions.js b/client/components/rules/actions/boardActions.js
index 02910cc1..5675873f 100644
--- a/client/components/rules/actions/boardActions.js
+++ b/client/components/rules/actions/boardActions.js
@@ -68,8 +68,8 @@ BlazeComponent.extendComponent({
const ruleName = this.data().ruleName.get();
const trigger = this.data().triggerVar.get();
const actionSelected = this.find('#move-spec-action').value;
- const swimlaneName = this.find('#swimlaneName').value;
- const listName = this.find('#listName').value;
+ const swimlaneName = this.find('#swimlaneName').value || '*';
+ const listName = this.find('#listName').value || '*';
const boardId = Session.get('currentBoard');
const destBoardId = this.find('#board-id').value;
const desc = Utils.getTriggerActionDesc(event, this);