Skip to content

Commit e62a498

Browse files
committed
Fix JSON object issue
1 parent 88901b5 commit e62a498

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

MDX2JSON/Dashboard.cls

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,10 @@ ClassMethod WidgetToProxyObject(Widget As %DeepSee.Dashboard.Widget, CubeName As
146146

147147
for i=1:1:Widget.dataProperties.Count()
148148
{
149-
set dataProperty = ..WidgetDataPropertyToProxyObject(Widget.dataProperties.GetAt(i))
149+
set widgetData = Widget.dataProperties.GetAt(i)
150+
d ##class(%ZEN.Auxiliary.jsonProvider).%ConvertJSONToObject(widgetData.override,,.override)
151+
set widgetData.override = override
152+
set dataProperty = ..WidgetDataPropertyToProxyObject(widgetData)
150153
if $IsObject(dataProperty) {
151154
$$$Insert(obj.dataProperties,dataProperty)
152155
}

0 commit comments

Comments
 (0)