@woosmap/ui 4.57.1 → 4.57.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.57.1",
3
+ "version": "4.57.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -145,9 +145,9 @@ class Modal extends Component {
145
145
  const { loadingLayerMessage, loadingProgression } = this.props;
146
146
  return (
147
147
  <div className="modal__body__loading-layer">
148
- {!loadingProgression && <Icon isLoad icon="load" size={60} />}
148
+ {loadingProgression === undefined && <Icon isLoad icon="load" size={60} />}
149
149
  <span>{loadingLayerMessage}</span>
150
- {loadingProgression && <ProgressBar percentage={loadingProgression} />}
150
+ {loadingProgression !== undefined && <ProgressBar percentage={loadingProgression} />}
151
151
  </div>
152
152
  );
153
153
  };