We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f9b90b commit 714fdefCopy full SHA for 714fdef
frontend/src/page/settings.vue
@@ -51,6 +51,7 @@ export default {
51
const isPublic = this.$config.isPublic();
52
const isPortal = this.$config.isPortal();
53
const isSuperAdmin = this.$session.isSuperAdmin();
54
+ const hasScope = this.$session.hasScope();
55
56
const tabs = [
57
{
@@ -77,7 +78,7 @@ export default {
77
78
portal: false,
79
admin: true,
80
demo: true,
- show: $config.feature("settings"),
81
+ show: $config.feature("settings") && !hasScope,
82
},
83
84
name: "settings_advanced",
0 commit comments