From 821bcdec9a8b98d39249e0ce12ea7ab8cd5587e6 Mon Sep 17 00:00:00 2001 From: Rares Mardare Date: Fri, 26 Aug 2022 13:01:36 +0300 Subject: [PATCH] missing prop --- grafana-plugin/src/components/Tag/Tag.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/grafana-plugin/src/components/Tag/Tag.tsx b/grafana-plugin/src/components/Tag/Tag.tsx index 6ba49566..6ade4339 100644 --- a/grafana-plugin/src/components/Tag/Tag.tsx +++ b/grafana-plugin/src/components/Tag/Tag.tsx @@ -7,6 +7,7 @@ import styles from 'components/Tag/Tag.module.css'; interface TagProps { color: string; className?: string; + children?: any; } const cx = cn.bind(styles);