This commit is contained in:
Nikhil Nandagopal 2019-11-11 11:34:42 +00:00
parent 45a168d1b9
commit f0a57e8aab
3 changed files with 9 additions and 3 deletions

View File

@ -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",
},
],
},
{

View File

@ -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 = {

View File

@ -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";