mirror of
https://github.com/wekan/wekan.git
synced 2026-01-25 02:36:09 +01:00
Minicard, show creator, defaultValue of schema and other code is now the same
This commit is contained in:
parent
a2662f1366
commit
7bf77fa7cb
2 changed files with 3 additions and 15 deletions
|
|
@ -913,19 +913,11 @@ BlazeComponent.extendComponent({
|
|||
},
|
||||
|
||||
allowsCreator() {
|
||||
return (
|
||||
this.currentBoard.allowsCreator === null ||
|
||||
this.currentBoard.allowsCreator === undefined ||
|
||||
this.currentBoard.allowsCreator
|
||||
);
|
||||
return this.currentBoard.allowsCreator ?? false;
|
||||
},
|
||||
|
||||
allowsCreatorOnMinicard() {
|
||||
return (
|
||||
this.currentBoard.allowsCreatorOnMinicard === null ||
|
||||
this.currentBoard.allowsCreatorOnMinicard === undefined ||
|
||||
this.currentBoard.allowsCreatorOnMinicard
|
||||
);
|
||||
return this.currentBoard.allowsCreatorOnMinicard ?? false;
|
||||
},
|
||||
|
||||
allowsMembers() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue