* Get query ui from form config * Update editor config selector * Show error message when config is undefined * Move FormLabel to components * Show dark theme in query editor * Allow query name to be focused
21 lines
377 B
TypeScript
21 lines
377 B
TypeScript
const queryConfigResponse = [
|
|
{
|
|
sectionName: "",
|
|
id: 1,
|
|
children: [
|
|
{
|
|
label: "",
|
|
configProperty: "actionConfiguration.body",
|
|
controlType: "QUERY_DYNAMIC_TEXT",
|
|
},
|
|
{
|
|
label: "Label",
|
|
configProperty: "property",
|
|
controlType: "INPUT_TEXT",
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export default queryConfigResponse;
|