mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 05:27:14 -04:00
Removed wekan- from export filenames for whitelabeling.
Thanks to xet7 !
This commit is contained in:
parent
d29f0eb5b6
commit
de27be0911
1 changed files with 4 additions and 4 deletions
|
@ -244,7 +244,7 @@ Template.boardMenuPopup.helpers({
|
|||
},
|
||||
exportFilename() {
|
||||
const boardId = Session.get('currentBoard');
|
||||
return `wekan-export-board-${boardId}.json`;
|
||||
return `export-board-${boardId}.json`;
|
||||
},
|
||||
});
|
||||
|
||||
|
@ -464,15 +464,15 @@ BlazeComponent.extendComponent({
|
|||
},
|
||||
exportJsonFilename() {
|
||||
const boardId = Session.get('currentBoard');
|
||||
return `wekan-export-board-${boardId}.json`;
|
||||
return `export-board-${boardId}.json`;
|
||||
},
|
||||
exportCsvFilename() {
|
||||
const boardId = Session.get('currentBoard');
|
||||
return `wekan-export-board-${boardId}.csv`;
|
||||
return `export-board-${boardId}.csv`;
|
||||
},
|
||||
exportTsvFilename() {
|
||||
const boardId = Session.get('currentBoard');
|
||||
return `wekan-export-board-${boardId}.tsv`;
|
||||
return `export-board-${boardId}.tsv`;
|
||||
},
|
||||
}).register('exportBoardPopup');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue