We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 339b0df commit 6c96619Copy full SHA for 6c96619
src/actions/AddToVariable.ts
@@ -0,0 +1,16 @@
1
+import {renderValue} from "~/value";
2
+import {renderActionHeader} from "~/render";
3
+import {SetVariableParameters} from "~/actions/set-variable";
4
+import {actions, actionText} from "~/actions";
5
+
6
+export default {
7
+ title: "Add",
8
+ icon: "f_cursive",
9
+ background: "#fc880f",
10
+ render: (container: HTMLElement, params: SetVariableParameters) => {
11
+ return renderActionHeader(actions['appendvariable'],
12
+ renderValue(params['WFInput'], 'Input'),
13
+ actionText('to'),
14
+ renderValue(params['WFVariableName'], 'Variable Name'));
15
+ }
16
+}
0 commit comments