@gingkoo/pandora-metabase 0.0.1-alpha.10 → 0.0.1-alpha.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/es/index.js +3 -3
- package/lib/es/index.js.map +1 -1
- package/lib/es/store/types.d.ts +1 -0
- package/package.json +1 -1
package/lib/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @gingkoo/pandora-metabase v0.0.1-alpha.
|
|
2
|
+
* @gingkoo/pandora-metabase v0.0.1-alpha.11
|
|
3
3
|
*/
|
|
4
4
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
5
5
|
import * as React from 'react';
|
|
@@ -5376,14 +5376,14 @@ const Filter = props => {
|
|
|
5376
5376
|
className: `Sqb-item`,
|
|
5377
5377
|
children: jsxs("div", {
|
|
5378
5378
|
className: `Sqb-hover-parent`,
|
|
5379
|
-
children: [jsx(Header, {
|
|
5379
|
+
children: [!meta.isPermanent ? jsx(Header, {
|
|
5380
5380
|
className: 'purple-text',
|
|
5381
5381
|
title: __('SqlQueryBuilder.filter'),
|
|
5382
5382
|
onClose: () => {
|
|
5383
5383
|
closePopup();
|
|
5384
5384
|
store.delMeta(meta);
|
|
5385
5385
|
}
|
|
5386
|
-
}), jsx("div", {
|
|
5386
|
+
}) : null, jsx("div", {
|
|
5387
5387
|
className: `Sqb-item--content`,
|
|
5388
5388
|
children: jsxs("div", {
|
|
5389
5389
|
className: `Sqb-NotebookCell gray-bg`,
|