mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
Add team to dropdown, activity translation map, use team not organization in name
This commit is contained in:
parent
ca2611c50b
commit
4178b2946f
5 changed files with 30 additions and 4 deletions
|
@ -207,7 +207,7 @@ export default Ember.Component.extend(SectionMixin, NotifierMixin, TooltipMixin,
|
|||
self.get('sectionService').fetch(page, "boards", self.get('config'))
|
||||
.then(function (boards) {
|
||||
self.set('busy', false);
|
||||
boards.unshift({ id: null, name: "--None--", backgroundColor: "white" }); // add the non-selection to the front
|
||||
boards.unshift({ id: null, namePath: "< do not show >", backgroundColor: "white" }); // add the non-selection to the front
|
||||
self.set('config.boards', boards); // save the boards in the config too
|
||||
self.set('boards', boards);
|
||||
self.getBoardLists();
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
<div class="input-control">
|
||||
<label>Individual Board</label>
|
||||
<div class="tip">Select board</div>
|
||||
{{ui-select id="boards-dropdown" content=boards action=(action 'onBoardChange') optionValuePath="id" optionLabelPath="name" selection=config.board}}
|
||||
{{ui-select id="boards-dropdown" content=boards action=(action 'onBoardChange') optionValuePath="id" optionLabelPath="namePath" selection=config.board}}
|
||||
</div>
|
||||
{{#if config.board.id}}
|
||||
<div class="input-control">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue