diff --git a/ghost/admin/app/components/gh-role-selection.js b/ghost/admin/app/components/gh-role-selection.js index 1a215d5078..20157842b6 100644 --- a/ghost/admin/app/components/gh-role-selection.js +++ b/ghost/admin/app/components/gh-role-selection.js @@ -18,7 +18,7 @@ export default class GhRoleSelectionComponent extends Component { async setRole(roleName) { const role = this.roles.findBy('name', roleName); this.args.setRole(role); - return this.validateRole(); + return this.validateRole(role); } @task