mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(core): Update LLM applications building support (no-changelog) (#7710)
extracted out of #7336 --------- Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com> Co-authored-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: Alex Grozav <alex@grozav.com>
This commit is contained in:
committed by
GitHub
parent
4a89504d54
commit
117962d473
@@ -7,8 +7,9 @@
|
||||
:disabled="disabled"
|
||||
:size="size"
|
||||
:circle="circle"
|
||||
:nodeTypeName="nodeType ? nodeType.displayName : ''"
|
||||
:nodeTypeName="nodeName ?? nodeType?.displayName ?? ''"
|
||||
:showTooltip="showTooltip"
|
||||
:tooltipPosition="tooltipPosition"
|
||||
:badge="badge"
|
||||
@click="(e) => $emit('click')"
|
||||
></n8n-node-icon>
|
||||
@@ -53,6 +54,14 @@ export default defineComponent({
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
tooltipPosition: {
|
||||
type: String,
|
||||
default: 'top',
|
||||
},
|
||||
nodeName: {
|
||||
type: String,
|
||||
required: false,
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
...mapStores(useRootStore),
|
||||
|
||||
Reference in New Issue
Block a user