We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32510f0 commit 5909716Copy full SHA for 5909716
src/app/shared/components/menu/main-menu/main-menu.component.ts
@@ -130,7 +130,9 @@ export class MainMenuComponent implements OnInit {
130
options[0].items.unshift({
131
label: integrationName,
132
handler: () => {
133
- this.integrationsService.navigateToIntegration(integrationName);
+ if (!this.isCurrentIntegration(integrationName)) {
134
+ this.integrationsService.navigateToIntegration(integrationName);
135
+ }
136
}
137
});
138
0 commit comments