@bitrise/bitkit 13.3.0 → 13.4.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.3.0",
4
+ "version": "13.4.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -180,9 +180,11 @@ const Filter = (props: FilterProps) => {
180
180
  Clear filters
181
181
  </Button>
182
182
  )}
183
- <Divider flexShrink="0" orientation="vertical" size="1" variant="solid" />
184
183
  {showSearch && (
185
- <FilterSearch onChange={onFilterChange} value={(cleanState.Search && cleanState.Search[0]) || ''} />
184
+ <>
185
+ <Divider flexShrink="0" orientation="vertical" size="1" variant="solid" />
186
+ <FilterSearch onChange={onFilterChange} value={(cleanState.Search && cleanState.Search[0]) || ''} />
187
+ </>
186
188
  )}
187
189
  </Box>
188
190
  )}