@gingkoo/pandora-metabase 0.0.13 → 0.0.14
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 -1
- package/lib/es/index.js.map +1 -1
- package/lib/es/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.
|
|
2
|
+
* @gingkoo/pandora-metabase v0.0.14
|
|
3
3
|
*/
|
|
4
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
5
5
|
import * as React from 'react';
|
|
@@ -5713,6 +5713,7 @@ const JoinData = props => {
|
|
|
5713
5713
|
const showSubQuery = (val = []) => {
|
|
5714
5714
|
const {
|
|
5715
5715
|
ref,
|
|
5716
|
+
subToolbar,
|
|
5716
5717
|
...other
|
|
5717
5718
|
} = store.preProps;
|
|
5718
5719
|
let newMeta = store.metaList.slice();
|
|
@@ -5724,6 +5725,7 @@ const JoinData = props => {
|
|
|
5724
5725
|
children: jsx(SqlVisionBuilder, {
|
|
5725
5726
|
...other,
|
|
5726
5727
|
_showSubquery: store.showSubquery,
|
|
5728
|
+
toolbar: subToolbar,
|
|
5727
5729
|
btnText: __('SqlQueryBuilder.confirm'),
|
|
5728
5730
|
value: val,
|
|
5729
5731
|
onOk: newList => {
|