@ -19,7 +19,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane
title:'Title',
value: panel.title,
popularRank: 1,
Component: functionrenderTitle() {
render: functionrenderTitle() {
return(
<Input
id="PanelFrameTitle"
@ -35,7 +35,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane
title:'Description',
description: panel.description,
value: panel.description,
Component: functionrenderDescription() {
render: functionrenderDescription() {
return(
<TextArea
defaultValue={panel.description}
@ -48,7 +48,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane
.addItem(
newOptionsPaneItemDescriptor({
title:'Transparent background',
Component: functionrenderTransparent() {
render: functionrenderTransparent() {
return(
<Switch
value={panel.transparent}
@ -67,7 +67,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane
}).addItem(
newOptionsPaneItemDescriptor({
title:'Panel links',
Component: functionrenderLinks() {
render: functionrenderLinks() {
return(
<DataLinksInlineEditor
links={panel.links}
@ -91,7 +91,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane
title:'Repeat by variable',
description:
'Repeat this panel for each value in the selected variable. This is not visible while in edit mode. You need to go back to dashboard and then update the variable or reload the dashboard.',
Component: functionrenderRepeatOptions() {
render: functionrenderRepeatOptions() {
return(
<RepeatRowSelect
repeat={panel.repeat}
@ -107,7 +107,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane
newOptionsPaneItemDescriptor({
title:'Repeat direction',
showIf:()=>!!panel.repeat,
Component: functionrenderRepeatOptions() {
render: functionrenderRepeatOptions() {
constdirectionOptions=[
{label:'Horizontal',value:'h'},
{label:'Vertical',value:'v'},
@ -127,7 +127,7 @@ export function getPanelFrameCategory(props: OptionPaneRenderProps): OptionsPane