Skip to content

Commit cb18e5f

Browse files
feat: OPTIC-1658: Add searchable select as an input for Set Ground Truth action (#7491)
1 parent 3d311d6 commit cb18e5f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

web/libs/datamanager/src/stores/Action.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const ActionFormField = types.model("ActionForm", {
1313
value: types.maybeNull(types.union(types.string, types.array(types.string))),
1414
options: types.maybeNull(types.union(types.array(types.string), types.array(SelectOptions))),
1515
type: types.enumeration(["input", "number", "checkbox", "radio", "toggle", "select", "range"]),
16+
searchable: types.optional(types.boolean, false),
17+
placeholder: types.optional(types.string, ""),
1618
});
1719

1820
const ActionFormCoulmn = types.model("ActionFormCoulmn", {

0 commit comments

Comments
 (0)