From 64e6a41353165b28ba296c48d1bc25c59397a5c0 Mon Sep 17 00:00:00 2001 From: McMatts Date: Mon, 10 Sep 2018 17:41:01 +0100 Subject: [PATCH] Correct Trello computed property for non-admins --- gui/app/components/section/trello/type-editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/app/components/section/trello/type-editor.js b/gui/app/components/section/trello/type-editor.js index 5d2315b3..c399f5a9 100644 --- a/gui/app/components/section/trello/type-editor.js +++ b/gui/app/components/section/trello/type-editor.js @@ -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')); }),