From 8a47fc85b119fe1cb053b4330261784165bf6fca Mon Sep 17 00:00:00 2001 From: Katalina / stardust Date: Sun, 31 Dec 2017 23:18:34 -0600 Subject: [PATCH] fix(UI): safe roles dialog --- UI/src/components/role-editor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/src/components/role-editor/index.js b/UI/src/components/role-editor/index.js index 8e43b14..9bd1875 100644 --- a/UI/src/components/role-editor/index.js +++ b/UI/src/components/role-editor/index.js @@ -164,7 +164,7 @@ class RoleEditor extends Component { .toArray() } { - (!this.props.editor.hasSafeRoles) + (this.props.editor.get('hasSafeRoles') !== true) ?
Why are there no roles here?