From 1f344a82a13ca5a0c26cda887d7488baa2c0d0dc Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Wed, 25 Oct 2023 04:42:22 +0100 Subject: [PATCH] Update desc wording --- .../CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js | 3 ++- .../CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/FlowPlugins/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js index 4db30c296..6ccebcd09 100644 --- a/FlowPlugins/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js @@ -4,7 +4,8 @@ exports.plugin = exports.details = void 0; /* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */ var details = function () { return ({ name: 'Set Original File', - description: 'Set the working file to the original file', + description: 'Set the working file to the original file path at the very start of the flow. ' + + 'The original file won\'t be affected by subsequent plugins (E.g. Replace Original File).', style: { borderColor: 'green', }, diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.ts index 3c0d4ff2b..b2981d66b 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.ts @@ -7,7 +7,8 @@ import { /* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */ const details = ():IpluginDetails => ({ name: 'Set Original File', - description: 'Set the working file to the original file', + description: 'Set the working file to the original file path at the very start of the flow. ' + + 'The original file won\'t be affected by subsequent plugins (E.g. Replace Original File).', style: { borderColor: 'green', },