1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 23:59:47 +02:00

Correct Trello computed property for non-admins

This commit is contained in:
McMatts 2018-09-10 17:41:01 +01:00
parent 0847a82fc9
commit 64e6a41353

View file

@ -27,7 +27,7 @@ export default Component.extend(SectionMixin, NotifierMixin, TooltipMixin, {
boards: null,
noBoards: false,
appKey: "",
trelloConfigured: computed('config.board', function () {
trelloConfigured: computed('appKey', function () {
return is.not.empty(this.get('appKey'));
}),