You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/monday/actions/create-column/create-column.mjs
+30-9
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ import monday from "../../monday.app.mjs";
4
4
exportdefault{
5
5
key: "monday-create-column",
6
6
name: "Create Column",
7
-
description: "Creates a column. [See the documentation](https://developer.monday.com/api-reference/docs/columns-queries-1)",
7
+
description: "Creates a column. [See the documentation](https://developer.monday.com/api-reference/reference/columns#create-a-column)",
8
8
type: "action",
9
-
version: "0.0.7",
9
+
version: "0.0.8",
10
10
props: {
11
11
monday,
12
12
boardId: {
@@ -25,12 +25,7 @@ export default {
25
25
label: "Column Type",
26
26
description: "The new column's title",
27
27
options: constants.COLUMN_TYPE_OPTIONS,
28
-
},
29
-
defaults: {
30
-
type: "object",
31
-
label: "Defaults",
32
-
description: "The new column's defaults.",
33
-
optional: true,
28
+
reloadProps: true,
34
29
},
35
30
description: {
36
31
type: "string",
@@ -39,6 +34,28 @@ export default {
39
34
optional: true,
40
35
},
41
36
},
37
+
asyncadditionalProps(){
38
+
constprops={};
39
+
constdefaults={
40
+
type: "string",
41
+
label: "Defaults",
42
+
description: "The new column's defaults. For use with column types `status` or `dropdown`. [See the documentation](https://developer.monday.com/api-reference/reference/columns#create-a-status-or-dropdown-column-with-custom-labels) for additional information.",
0 commit comments