diff --git a/packages/editor-ui/src/components/Projects/ProjectMoveResourceModal.vue b/packages/editor-ui/src/components/Projects/ProjectMoveResourceModal.vue
index c4814550cd..a2205f2490 100644
--- a/packages/editor-ui/src/components/Projects/ProjectMoveResourceModal.vue
+++ b/packages/editor-ui/src/components/Projects/ProjectMoveResourceModal.vue
@@ -1,6 +1,6 @@
@@ -184,8 +191,10 @@ onMounted(() => {
>
{{ props.data.resourceTypeLabel }}
-
-
+
{{
i18n.baseText('projects.move.resource.modal.message.sharingInfo', {
adjustToNumber: props.data.resource.sharedWithProjects?.length,
@@ -195,6 +204,43 @@ onMounted(() => {
})
}}
+
+
+
+
+
+ {{
+ i18n.baseText('projects.move.resource.modal.message.usedCredentials.number', {
+ adjustToNumber: usedCredentials.length,
+ interpolate: { number: usedCredentials.length },
+ })
+ }}
+
+
+
+ -
+
+ {{ credential.name }}
+
+
+
+
+
+
+
+
{{
@@ -225,4 +271,9 @@ onMounted(() => {
display: flex;
justify-content: flex-end;
}
+
+.textBlock {
+ display: block;
+ margin-top: var(--spacing-s);
+}
diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json
index 146b8948a7..1adbf65d84 100644
--- a/packages/editor-ui/src/plugins/i18n/locales/en.json
+++ b/packages/editor-ui/src/plugins/i18n/locales/en.json
@@ -2606,6 +2606,8 @@
"projects.move.resource.modal.message.note": "Note",
"projects.move.resource.modal.message.sharingNote": "{note}: Moving will remove any existing sharing for this {resourceTypeLabel}.",
"projects.move.resource.modal.message.sharingInfo": "(Currently shared with {numberOfProjects} project) | (Currently shared with {numberOfProjects} projects)",
+ "projects.move.resource.modal.message.usedCredentials": "Also share the {usedCredentials} used by this workflow to ensure it will continue to run correctly",
+ "projects.move.resource.modal.message.usedCredentials.number": "{number} credential | {number} credentials",
"projects.move.resource.modal.message.noProjects": "Currently there are not any projects or users available for you to move this {resourceTypeLabel} to.",
"projects.move.resource.modal.button": "Move {resourceTypeLabel}",
"projects.move.resource.modal.selectPlaceholder": "Select project or user...",