mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
address design feedback
This commit is contained in:
parent
9e70cb1b05
commit
f746da04ac
|
@ -1225,6 +1225,19 @@ function onSearchClear() {
|
|||
document.dispatchEvent(new KeyboardEvent('keyup', { key: '/' }));
|
||||
}
|
||||
|
||||
function getExecutionLinkLabel(task: ITaskMetadata) {
|
||||
if (task.parentExecution) {
|
||||
return i18n.baseText('runData.openParentExecution', {
|
||||
interpolate: { id: task.parentExecution.executionId },
|
||||
});
|
||||
}
|
||||
if (task.subExecution) {
|
||||
return i18n.baseText('runData.openSubExecution', {
|
||||
interpolate: { id: task.subExecution.executionId },
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
defineExpose({ enterEditMode });
|
||||
</script>
|
||||
|
||||
|
@ -1398,11 +1411,7 @@ defineExpose({ enterEditMode });
|
|||
@click.stop="openRelatedExecution(activeTaskMetadata, displayMode)"
|
||||
>
|
||||
<N8nIcon icon="external-link-alt" size="xsmall" />
|
||||
{{
|
||||
activeTaskMetadata.parentExecution
|
||||
? $locale.baseText('runData.openParentExecution')
|
||||
: $locale.baseText('runData.openSubExecution')
|
||||
}}
|
||||
{{ getExecutionLinkLabel(activeTaskMetadata) }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
@ -1483,11 +1492,7 @@ defineExpose({ enterEditMode });
|
|||
@click.stop="openRelatedExecution(activeTaskMetadata, displayMode)"
|
||||
>
|
||||
<N8nIcon icon="external-link-alt" size="xsmall" />
|
||||
{{
|
||||
activeTaskMetadata.parentExecution
|
||||
? $locale.baseText('runData.openParentExecution')
|
||||
: $locale.baseText('runData.openSubExecution')
|
||||
}}
|
||||
{{ getExecutionLinkLabel(activeTaskMetadata) }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -142,7 +142,13 @@ const outputError = computed(() => {
|
|||
<li v-if="runMeta?.subExecution">
|
||||
<a @click.stop="openRelatedExecution(runMeta, 'ai')">
|
||||
<N8nIcon icon="external-link-alt" size="xsmall" />
|
||||
{{ $locale.baseText('runData.openSubExecution') }}
|
||||
{{
|
||||
$locale.baseText('runData.openSubExecution', {
|
||||
interpolate: {
|
||||
id: runMeta.subExecution?.executionId,
|
||||
},
|
||||
})
|
||||
}}
|
||||
</a>
|
||||
</li>
|
||||
<li v-if="(consumedTokensSum?.totalTokens ?? 0) > 0" :class="$style.tokensUsage">
|
||||
|
|
|
@ -551,6 +551,7 @@ watch(focusedMappableInput, (curr) => {
|
|||
},
|
||||
})
|
||||
"
|
||||
placement="left"
|
||||
:hide-after="0"
|
||||
>
|
||||
<N8nIconButton
|
||||
|
|
|
@ -959,7 +959,7 @@
|
|||
"ndv.output.branch": "Branch",
|
||||
"ndv.output.executing": "Executing node...",
|
||||
"ndv.output.items": "{count} item | {count} items",
|
||||
"ndv.output.andSubExecutions": ", {count} sub execution | , {count} sub executions",
|
||||
"ndv.output.andSubExecutions": ", {count} sub-execution | , {count} sub-executions",
|
||||
"ndv.output.noOutputData.message": "n8n stops executing the workflow when a node has no output data. You can change this default behaviour via",
|
||||
"ndv.output.noOutputData.message.settings": "Settings",
|
||||
"ndv.output.noOutputData.message.settingsOption": "> \"Always Output Data\".",
|
||||
|
@ -1558,8 +1558,8 @@
|
|||
"resourceMapper.addAllFields": "Add All {fieldWord}",
|
||||
"resourceMapper.removeAllFields": "Remove All {fieldWord}",
|
||||
"resourceMapper.refreshFieldList": "Refresh {fieldWord} List",
|
||||
"runData.openSubExecution": "Open Sub Execution",
|
||||
"runData.openParentExecution": "Open Parent Execution",
|
||||
"runData.openSubExecution": "Inspect Sub-Execution {id}",
|
||||
"runData.openParentExecution": "Inspect Parent Execution {id}",
|
||||
"runData.emptyItemHint": "This is an item, but it's empty.",
|
||||
"runData.emptyArray": "[empty array]",
|
||||
"runData.emptyString": "[empty]",
|
||||
|
@ -1607,7 +1607,7 @@
|
|||
"runData.showBinaryData": "View",
|
||||
"runData.startTime": "Start Time",
|
||||
"runData.table": "Table",
|
||||
"runData.table.inspectSubExecution": "Inspect sub execution {id}",
|
||||
"runData.table.inspectSubExecution": "Inspect sub-execution {id}",
|
||||
"runData.pindata.learnMore": "Learn more",
|
||||
"runData.pindata.thisDataIsPinned": "This data is pinned.",
|
||||
"runData.pindata.unpin": "Unpin",
|
||||
|
|
Loading…
Reference in a new issue