diff --git a/FlowPlugins/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/file/setOriginalFile/1.0.0/index.js index 4db30c2..6ccebcd 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 3c0d4ff..b2981d6 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', },