|
@@ -244,7 +244,7 @@ Template.boardMenuPopup.helpers({
|
|
},
|
|
},
|
|
exportFilename() {
|
|
exportFilename() {
|
|
const boardId = Session.get('currentBoard');
|
|
const boardId = Session.get('currentBoard');
|
|
- return `wekan-export-board-${boardId}.json`;
|
|
|
|
|
|
+ return `export-board-${boardId}.json`;
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
|
|
@@ -464,15 +464,15 @@ BlazeComponent.extendComponent({
|
|
},
|
|
},
|
|
exportJsonFilename() {
|
|
exportJsonFilename() {
|
|
const boardId = Session.get('currentBoard');
|
|
const boardId = Session.get('currentBoard');
|
|
- return `wekan-export-board-${boardId}.json`;
|
|
|
|
|
|
+ return `export-board-${boardId}.json`;
|
|
},
|
|
},
|
|
exportCsvFilename() {
|
|
exportCsvFilename() {
|
|
const boardId = Session.get('currentBoard');
|
|
const boardId = Session.get('currentBoard');
|
|
- return `wekan-export-board-${boardId}.csv`;
|
|
|
|
|
|
+ return `export-board-${boardId}.csv`;
|
|
},
|
|
},
|
|
exportTsvFilename() {
|
|
exportTsvFilename() {
|
|
const boardId = Session.get('currentBoard');
|
|
const boardId = Session.get('currentBoard');
|
|
- return `wekan-export-board-${boardId}.tsv`;
|
|
|
|
|
|
+ return `export-board-${boardId}.tsv`;
|
|
},
|
|
},
|
|
}).register('exportBoardPopup');
|
|
}).register('exportBoardPopup');
|
|
|
|
|