Skip to content

Commit 3938577

Browse files
committed
fix another error discovered by copilot..
1 parent f88397d commit 3938577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/DerivedDataDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const DerivedDataDialog: FC<DerivedDataDialogProps> = function DerivedDat
7474
let toDeriveFields = derivedFields.filter(f => f.name != "").filter(f => findBaseFields(f, conceptShelfItems).every(f2 => table.names.includes(f2.name)))
7575
let extTable = baseTableToExtTable(JSON.parse(JSON.stringify(table.rows)), toDeriveFields, conceptShelfItems);
7676

77-
let assembledChart: any = assembleVegaChart(chart.chartType, chart.encodingMap, conceptShelfItems, extTable)[0];
77+
let assembledChart: any = assembleVegaChart(chart.chartType, chart.encodingMap, conceptShelfItems, extTable);
7878
assembledChart["background"] = "transparent";
7979
// chart["autosize"] = {
8080
// "type": "fit",

0 commit comments

Comments
 (0)