@vizzly/dashboard 0.15.1-dev-a5ec7c800259618d61c53cad1cc968c092a22019 → 0.15.1

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.
@@ -11424,6 +11424,11 @@ function filterFields(originalFields, options) {
11424
11424
  return !isCustomBuildMetric(field);
11425
11425
  });
11426
11426
  }
11427
+ if (options != null && options.removeRoundedNumbers) {
11428
+ fields = fields.filter(function (field) {
11429
+ return !isRoundedNumberField(field);
11430
+ });
11431
+ }
11427
11432
  if (options != null && options.removeAggregateCustomBuildMetric) {
11428
11433
  fields = fields.filter(function (field) {
11429
11434
  return !isCustomBuildMetric(field) || field.metric.type === PropertyType.Field || field.metric.type === PropertyType.NumberInput;