From 3dbd4488ae37310ba369acf0a6af34403ceedf9a Mon Sep 17 00:00:00 2001 From: Mark Prins Date: Wed, 2 Dec 2020 14:39:15 +1300 Subject: [PATCH] include old table type --- frontend/src/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/api.ts b/frontend/src/api.ts index 31acfef..06aca70 100644 --- a/frontend/src/api.ts +++ b/frontend/src/api.ts @@ -180,7 +180,7 @@ export const getPanels = async (datasourceID: number): Promise => { .filter(({ panels }) => panels?.length > 0) .map(({ panels, templating, uid }) => { const mappedPanels = panels - .filter(({ type }) => type === 'table') + .filter(({ type }) => type === 'table' || type === 'table-old') .map(rawPanel => { const { targets } = rawPanel; const [target] = targets;