8000 Add isEnterprise check · open-bigdata/arangodb@d6b38d5 · GitHub
[go: up one dir, main page]

Skip to content

Commit d6b38d5

Browse files
ajurdakKVS85
authored andcommitted
Add isEnterprise check
1 parent bb12f44 commit d6b38d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

js/apps/system/_admin/aardvark/APP/frontend/js/views/navigationView.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@
6969
currentDB: this.currentDB.toJSON()
7070
}));
7171
arangoHelper.checkDatabasePermissions(this.continueRender.bind(this), this.continueRender.bind(this));
72-
this.fetchLicenseInfo();
72+
if (window.frontendConfig.isEnterprise === true) {
73+
this.fetchLicenseInfo();
74+
}
7375
},
7476

7577
continueRender: function (readOnly) {

0 commit comments

Comments
 (0)
0