@bitrise/bitkit 13.87.0 → 13.88.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.87.0",
4
+ "version": "13.88.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -360,7 +360,7 @@ const Dropdown = forwardRef<Element, DropdownProps<string | null>>(
360
360
  />
361
361
  {errorText && <FormErrorMessage as="p">{errorText}</FormErrorMessage>}
362
362
  {!errorText && helperText && (
363
- <FormHelperText data-disabled={disabled} as="p">
363
+ <FormHelperText data-disabled={disabled || undefined} as="p">
364
364
  {helperText}
365
365
  </FormHelperText>
366
366
  )}