@gingkoo/pandora-metabase 0.0.15 → 0.0.16
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 +4 -6
- package/lib/es/index.js.map +1 -1
- package/package.json +1 -1
package/lib/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @gingkoo/pandora-metabase v0.0.
|
|
2
|
+
* @gingkoo/pandora-metabase v0.0.16
|
|
3
3
|
*/
|
|
4
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
5
5
|
import * as React from 'react';
|
|
@@ -5773,9 +5773,7 @@ const JoinData = props => {
|
|
|
5773
5773
|
}
|
|
5774
5774
|
})
|
|
5775
5775
|
}),
|
|
5776
|
-
onClose: () => {
|
|
5777
|
-
o.close();
|
|
5778
|
-
}
|
|
5776
|
+
onClose: () => {}
|
|
5779
5777
|
});
|
|
5780
5778
|
};
|
|
5781
5779
|
// 切换子查询
|
|
@@ -5852,8 +5850,8 @@ const JoinData = props => {
|
|
|
5852
5850
|
disabled: meta.readonly,
|
|
5853
5851
|
primary: meta.isSubquery,
|
|
5854
5852
|
ghost: true,
|
|
5855
|
-
className: cx('mr-2 operator-icon
|
|
5856
|
-
|
|
5853
|
+
className: cx('mr-2 operator-icon', {
|
|
5854
|
+
['subquery-icon']: !meta.isSubquery
|
|
5857
5855
|
}),
|
|
5858
5856
|
icon: jsx(RelatedWork, {}),
|
|
5859
5857
|
onClick: switchSubQuery
|