mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Set '*' as default value for swimlane and list name in card move action
This is the same default as `Utils.getTriggerActionDesc` has. This commit fixes https://github.com/wekan/wekan/issues/3107.
This commit is contained in:
parent
94e47401cb
commit
24b21d23ba
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue