We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10c31dd commit e392ec2Copy full SHA for e392ec2
web/src/components/toolbar/filters/chips-popover.tsx
@@ -11,6 +11,10 @@ export interface ChipsPopoverProps {
11
export const ChipsPopover: React.FC<ChipsPopoverProps> = ({ chipsPopoverMessage, setChipsPopoverMessage }) => {
12
const { t } = useTranslation('plugin__netobserv-plugin');
13
14
+ if (!chipsPopoverMessage) {
15
+ return <></>;
16
+ }
17
+
18
return (
19
<Popover
20
id="chips-popover"
0 commit comments