mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(editor): Testing flaky resource mapper feature in e2e tests (#7165)
This commit is contained in:
committed by
GitHub
parent
0c6169ee22
commit
aaf87c3edd
@@ -18,7 +18,7 @@
|
||||
:expressionEvaluated="expressionValueComputed"
|
||||
:additionalExpressionData="resolvedAdditionalExpressionData"
|
||||
:label="label"
|
||||
:data-test-id="`parameter-input-${parameter.name}`"
|
||||
:data-test-id="`parameter-input-${parsedParameterName}`"
|
||||
:event-bus="eventBus"
|
||||
@focus="onFocus"
|
||||
@blur="onBlur"
|
||||
@@ -61,7 +61,7 @@ import type {
|
||||
import { isResourceLocatorValue } from 'n8n-workflow';
|
||||
import type { INodeUi, IUpdateInformation, TargetItem } from '@/Interface';
|
||||
import { workflowHelpers } from '@/mixins/workflowHelpers';
|
||||
import { isValueExpression } from '@/utils';
|
||||
import { isValueExpression, parseResourceMapperFieldName } from '@/utils';
|
||||
import { useNDVStore } from '@/stores/ndv.store';
|
||||
import { useEnvironmentsStore, useExternalSecretsStore } from '@/stores';
|
||||
|
||||
@@ -226,6 +226,9 @@ export default defineComponent({
|
||||
...this.additionalExpressionData,
|
||||
};
|
||||
},
|
||||
parsedParameterName() {
|
||||
return parseResourceMapperFieldName(this.parameter?.name ?? '');
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
onFocus() {
|
||||
|
||||
Reference in New Issue
Block a user