datastake-daf 0.6.233 → 0.6.235

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.
@@ -12069,7 +12069,7 @@ const SearchFilters = _ref => {
12069
12069
  children: t('Oops, looks like there are no search matches. Please try again!')
12070
12070
  })]
12071
12071
  })]
12072
- }), showFilter && /*#__PURE__*/jsxRuntime.jsx("div", {
12072
+ }), showFilter ? /*#__PURE__*/jsxRuntime.jsx("div", {
12073
12073
  className: "flex flex-column",
12074
12074
  children: /*#__PURE__*/jsxRuntime.jsx(antd.Button, {
12075
12075
  className: "ml-3 flex-1 squareIconButton no-min-width",
@@ -12082,7 +12082,7 @@ const SearchFilters = _ref => {
12082
12082
  height: 16
12083
12083
  })
12084
12084
  })
12085
- })]
12085
+ }) : null]
12086
12086
  });
12087
12087
  };
12088
12088
  SearchFilters.propTypes = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.233",
3
+ "version": "0.6.235",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -171,7 +171,7 @@ const SearchFilters = ({
171
171
  </div>
172
172
  )}
173
173
  </div>
174
- {showFilter && (
174
+ {showFilter ? (
175
175
  <div className='flex flex-column'>
176
176
  <Button
177
177
  className="ml-3 flex-1 squareIconButton no-min-width"
@@ -185,7 +185,7 @@ const SearchFilters = ({
185
185
  </div> */}
186
186
  </Button>
187
187
  </div>
188
- )}
188
+ ) : null}
189
189
  </div>
190
190
  );
191
191
  };