@abgov/react-components 6.7.1-alpha.3 → 6.7.1-alpha.4

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/index.mjs CHANGED
@@ -676,6 +676,9 @@ function stringify(value) {
676
676
  if (typeof value === "string") {
677
677
  return value;
678
678
  }
679
+ if (typeof value === "number") {
680
+ return "" + value;
681
+ }
679
682
  return JSON.stringify(value);
680
683
  }
681
684
  function GoabDropdown(props) {