mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 fix external links in sidemenu (#1720)
* fix admin link clickability * fix bug when there are unsaved changes
This commit is contained in:
@@ -52,7 +52,7 @@ export const genericHelpers = mixins(showMessage).extend({
|
||||
return true;
|
||||
},
|
||||
|
||||
startLoading () {
|
||||
startLoading (text?: string) {
|
||||
if (this.loadingService !== null) {
|
||||
return;
|
||||
}
|
||||
@@ -60,7 +60,7 @@ export const genericHelpers = mixins(showMessage).extend({
|
||||
this.loadingService = this.$loading(
|
||||
{
|
||||
lock: true,
|
||||
text: 'Loading',
|
||||
text: text || 'Loading',
|
||||
spinner: 'el-icon-loading',
|
||||
background: 'rgba(255, 255, 255, 0.8)',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user