@flywheel-io/vision 20.1.0 → 20.1.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.
@@ -7147,7 +7147,7 @@ class FwSelectMenuComponent {
7147
7147
  const iProp = this.iconProperty();
7148
7148
  const fullOption = this.useFullOptionAsValue();
7149
7149
  // null guard
7150
- if (!newValue) {
7150
+ if (newValue === null || newValue === undefined) {
7151
7151
  this.selectValue.set('');
7152
7152
  this.selectIcon = undefined;
7153
7153
  return this.onChange(newValue);