You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2024/02/05 19:46:03 UTC

(superset) branch cartodiagram-plugin-2023-11-03 updated: ignore ts error

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch cartodiagram-plugin-2023-11-03
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/cartodiagram-plugin-2023-11-03 by this push:
     new a54452869e ignore ts error
a54452869e is described below

commit a54452869e4cf38ee8d7bd8b4fc3f42d1465aaca
Author: Ville Brofeldt <vi...@apple.com>
AuthorDate: Mon Feb 5 11:45:51 2024 -0800

    ignore ts error
---
 .../plugins/plugin-chart-cartodiagram/src/util/layerUtil.tsx             | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/plugins/plugin-chart-cartodiagram/src/util/layerUtil.tsx b/superset-frontend/plugins/plugin-chart-cartodiagram/src/util/layerUtil.tsx
index 4af5066efc..65e608bd75 100644
--- a/superset-frontend/plugins/plugin-chart-cartodiagram/src/util/layerUtil.tsx
+++ b/superset-frontend/plugins/plugin-chart-cartodiagram/src/util/layerUtil.tsx
@@ -133,6 +133,7 @@ export const createWfsLayer = async (wfsLayerConf: WfsLayerConf) => {
 
   return new VectorLayer({
     source: wfsSource,
+    // @ts-ignore
     style: writeStyleResult?.output,
   });
 };