diff --git a/packages/design-system/src/components/N8nUserSelect/UserSelect.vue b/packages/design-system/src/components/N8nUserSelect/UserSelect.vue
index a2c208b93..5be64e22f 100644
--- a/packages/design-system/src/components/N8nUserSelect/UserSelect.vue
+++ b/packages/design-system/src/components/N8nUserSelect/UserSelect.vue
@@ -72,7 +72,7 @@ export default mixins(Locale).extend({
},
size: {
type: String,
- validator: (value: string): boolean => ['mini', 'small', 'large'].includes(value),
+ validator: (value: string): boolean => ['mini', 'small', 'medium', 'large'].includes(value),
},
},
data() {
diff --git a/packages/editor-ui/src/components/NodeDetailsView.vue b/packages/editor-ui/src/components/NodeDetailsView.vue
index 32489f21a..d95610d73 100644
--- a/packages/editor-ui/src/components/NodeDetailsView.vue
+++ b/packages/editor-ui/src/components/NodeDetailsView.vue
@@ -93,9 +93,10 @@
:dragging="isDragging"
:sessionId="sessionId"
:nodeType="activeNodeType"
- :isReadOnly="readOnly || hasForeignCredential"
+ :hasForeignCredential="hasForeignCredential"
+ :readOnly="readOnly"
:blockUI="blockUi && showTriggerPanel"
- :executable="!readOnly || hasForeignCredential"
+ :executable="!readOnly"
@valueChanged="valueChanged"
@execute="onNodeExecute"
@stopExecution="onStopExecution"
diff --git a/packages/editor-ui/src/components/NodeSettings.vue b/packages/editor-ui/src/components/NodeSettings.vue
index c4c8168b0..d7187f907 100644
--- a/packages/editor-ui/src/components/NodeSettings.vue
+++ b/packages/editor-ui/src/components/NodeSettings.vue
@@ -10,7 +10,7 @@
:isReadOnly="isReadOnly"
@input="nameChanged"
>
-
+
+
@@ -183,6 +187,12 @@ export default mixins(externalHooks, nodeHelpers).extend({
isCurlImportModalOpen(): boolean {
return this.uiStore.isModalOpen(IMPORT_CURL_MODAL_KEY);
},
+ isReadOnly(): boolean {
+ return this.readOnly || this.hasForeignCredential;
+ },
+ isExecutable(): boolean {
+ return this.executable || this.hasForeignCredential;
+ },
nodeTypeName(): string {
if (this.nodeType) {
const shortNodeType = this.$locale.shortNodeType(this.nodeType.name);
@@ -257,8 +267,13 @@ export default mixins(externalHooks, nodeHelpers).extend({
nodeType: {
type: Object as PropType
,
},
- isReadOnly: {
+ readOnly: {
type: Boolean,
+ default: false,
+ },
+ hasForeignCredential: {
+ type: Boolean,
+ default: false,
},
blockUI: {
type: Boolean,
diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json
index 6b997a625..2f848b5ae 100644
--- a/packages/editor-ui/src/plugins/i18n/locales/en.json
+++ b/packages/editor-ui/src/plugins/i18n/locales/en.json
@@ -763,6 +763,7 @@
"nodeSettings.useTheHttpRequestNode": "Use the HTTP Request node to make a custom API call. We'll take care of the {nodeTypeDisplayName} auth for you. Learn more",
"nodeSettings.waitBetweenTries.description": "How long to wait between each attempt (in milliseconds)",
"nodeSettings.waitBetweenTries.displayName": "Wait Between Tries (ms)",
+ "nodeSettings.hasForeignCredential": "This node is working as expected, but you can't edit it since its credentials aren't shared with you. To edit this node, please ask the owner of the workflow to share the credentials with you. Alternatively, you can also duplicate this node in the workflow and add your own credentials.",
"nodeView.addNode": "Add node",
"nodeView.addATriggerNodeFirst": "Add a Trigger Node first",
"nodeView.addOrEnableTriggerNode": "Add or enable a Trigger node to execute the workflow",