fix(editor): Use web native <a> element in nav menus (#8385)
This commit is contained in:
@@ -44,7 +44,6 @@ import type {
|
||||
CloudUpdateLinkSourceType,
|
||||
CurlToJSONResponse,
|
||||
IFakeDoorLocation,
|
||||
IMenuItem,
|
||||
INodeUi,
|
||||
IOnboardingCallPrompt,
|
||||
IUser,
|
||||
@@ -176,7 +175,6 @@ export const useUIStore = defineStore(STORES.UI, {
|
||||
nodeViewOffsetPosition: [0, 0],
|
||||
nodeViewMoveInProgress: false,
|
||||
selectedNodes: [],
|
||||
sidebarMenuItems: [],
|
||||
nodeViewInitialized: false,
|
||||
addFirstStepOnLoad: false,
|
||||
executionSidebarAutoRefresh: true,
|
||||
@@ -528,10 +526,6 @@ export const useUIStore = defineStore(STORES.UI, {
|
||||
resetSelectedNodes(): void {
|
||||
this.selectedNodes = [];
|
||||
},
|
||||
addSidebarMenuItems(menuItems: IMenuItem[]) {
|
||||
const updated = this.sidebarMenuItems.concat(menuItems);
|
||||
this.sidebarMenuItems = updated;
|
||||
},
|
||||
setCurlCommand(payload: { name: string; command: string }): void {
|
||||
this.modals[payload.name] = {
|
||||
...this.modals[payload.name],
|
||||
|
||||
Reference in New Issue
Block a user