mirror of
https://github.com/wekan/wekan.git
synced 2026-02-02 22:51:47 +01:00
Fix activity message for list deletion
This commit is contained in:
parent
1169c0d7dc
commit
23cb98bb82
5 changed files with 17 additions and 1 deletions
|
|
@ -41,6 +41,9 @@ template(name="boardActivities")
|
|||
if($eq activityType 'createList')
|
||||
| {{_ 'activity-added' list.title boardLabel}}.
|
||||
|
||||
if($eq activityType 'removeList')
|
||||
| {{_ 'activity-removed' title boardLabel}}.
|
||||
|
||||
if($eq activityType 'importBoard')
|
||||
| {{{_ 'activity-imported-board' boardLabel sourceLink}}}.
|
||||
|
||||
|
|
|
|||
|
|
@ -64,5 +64,6 @@ Template.listActionPopup.events({
|
|||
const currentList = this;
|
||||
evt.preventDefault();
|
||||
Lists.remove(currentList._id);
|
||||
Popup.close();
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue