Master
This commit is contained in:
parent
45a168d1b9
commit
f0a57e8aab
|
|
@ -327,7 +327,7 @@ const PropertyPaneConfigResponse: PropertyPaneConfigState = {
|
|||
{
|
||||
id: "9.7",
|
||||
propertyName: "isVisible",
|
||||
label: "Visibile",
|
||||
label: "Visible",
|
||||
controlType: "SWITCH",
|
||||
},
|
||||
{
|
||||
|
|
@ -392,6 +392,12 @@ const PropertyPaneConfigResponse: PropertyPaneConfigState = {
|
|||
label: "Visible",
|
||||
controlType: "SWITCH",
|
||||
},
|
||||
{
|
||||
id: "11.6",
|
||||
propertyName: "tableData",
|
||||
label: "Enter data array",
|
||||
controlType: "INPUT_TEXT",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ export function* evaluateJSONPathSaga(path: string): any {
|
|||
return getDynamicBoundValue(dataTree, path);
|
||||
}
|
||||
|
||||
export function* executeAPIQueryActionSaga(apiAction: ActionPayload) {
|
||||
export function* executeAPIQueryActionSaga(apiAction: { actionId: string }) {
|
||||
const api: PageAction = yield select(getAction, apiAction.actionId);
|
||||
|
||||
const executeActionRequest: ExecuteActionRequest = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import * as React from "react";
|
||||
import React from "react";
|
||||
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
|
||||
import { WidgetType } from "../constants/WidgetConstants";
|
||||
import RadioGroupComponent from "../components/designSystems/blueprint/RadioGroupComponent";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user