mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
feat: External Secrets storage for credentials (#6477)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Romain Minaud <romain.minaud@gmail.com> Co-authored-by: Valya Bullions <valya@n8n.io> Co-authored-by: Csaba Tuncsik <csaba@n8n.io> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com>
This commit is contained in:
@@ -66,8 +66,6 @@ import { mapStores } from 'pinia';
|
||||
import { useWorkflowsStore } from '@/stores/workflows.store';
|
||||
import { createEventBus } from 'n8n-design-system/utils';
|
||||
|
||||
type ParamRef = InstanceType<typeof ParameterInputWrapper>;
|
||||
|
||||
export default defineComponent({
|
||||
name: 'parameter-input-expanded',
|
||||
components: {
|
||||
@@ -116,6 +114,10 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
if (this.parameter.type === 'number') {
|
||||
if (typeof this.value === 'string' && this.value.startsWith('=')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return typeof this.value !== 'number';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user