mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
ci: Upgrade eslint, prettier, typescript, and some other dev tooling (no-changelog) (#8895)
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
committed by
GitHub
parent
117b57ccc5
commit
372d5c7d01
@@ -64,7 +64,7 @@ function onSelected(item: INodeCreateElement) {
|
||||
icon: item.properties.icon,
|
||||
iconType: 'icon',
|
||||
},
|
||||
}
|
||||
}
|
||||
: {}),
|
||||
...(item.properties.panelClass ? { panelClass: item.properties.panelClass } : {}),
|
||||
rootView: activeViewStack.value.rootView,
|
||||
@@ -218,8 +218,8 @@ registerKeyHook('MainViewArrowLeft', {
|
||||
:root-view="activeViewStack.rootView"
|
||||
show-icon
|
||||
show-request
|
||||
@addWebhookNode="selectNodeType([WEBHOOK_NODE_TYPE])"
|
||||
@addHttpNode="selectNodeType([HTTP_REQUEST_NODE_TYPE])"
|
||||
@add-webhook-node="selectNodeType([WEBHOOK_NODE_TYPE])"
|
||||
@add-http-node="selectNodeType([HTTP_REQUEST_NODE_TYPE])"
|
||||
/>
|
||||
</template>
|
||||
</ItemsRenderer>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
@mousedown="onMouseDown"
|
||||
@mouseup="onMouseUp"
|
||||
>
|
||||
<NodesListPanel @nodeTypeSelected="onNodeTypeSelected" />
|
||||
<NodesListPanel @node-type-selected="onNodeTypeSelected" />
|
||||
</div>
|
||||
</SlideTransition>
|
||||
</div>
|
||||
|
||||
@@ -33,7 +33,7 @@ const searchPlaceholder = computed(() =>
|
||||
isActionsMode.value
|
||||
? i18n.baseText('nodeCreator.actionsCategory.searchActions', {
|
||||
interpolate: { node: activeViewStack.value.title as string },
|
||||
})
|
||||
})
|
||||
: i18n.baseText('nodeCreator.searchBar.searchNodes'),
|
||||
);
|
||||
|
||||
@@ -118,7 +118,7 @@ function onBackButton() {
|
||||
<transition
|
||||
v-if="viewStacks.length > 0"
|
||||
:name="`panel-slide-${activeViewStack.transitionDirection}`"
|
||||
@afterLeave="onTransitionEnd"
|
||||
@after-leave="onTransitionEnd"
|
||||
>
|
||||
<aside
|
||||
:key="`${activeViewStack.uuid}`"
|
||||
@@ -169,7 +169,7 @@ function onBackButton() {
|
||||
: $locale.baseText('nodeCreator.searchBar.searchNodes')
|
||||
"
|
||||
:model-value="activeViewStack.search"
|
||||
@update:modelValue="onSearch"
|
||||
@update:model-value="onSearch"
|
||||
/>
|
||||
<div :class="$style.renderedItems">
|
||||
<n8n-notice
|
||||
|
||||
@@ -116,7 +116,7 @@ function getAiNodesBySubcategory(nodes: INodeTypeDescription[], subcategory: str
|
||||
type: 'file',
|
||||
icon: 'openai',
|
||||
fileBuffer: '/static/open-ai.svg',
|
||||
}
|
||||
}
|
||||
: undefined,
|
||||
},
|
||||
}))
|
||||
|
||||
Reference in New Issue
Block a user