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