@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
|
@@ -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
|
-
{
|
|
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
|
};
|