@abdellatifui/react 3.1.80 → 3.1.81
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/dist/nextgen.js +2 -2
- package/package.json +1 -1
package/dist/nextgen.js
CHANGED
|
@@ -14167,7 +14167,7 @@ const SourcesPorts = (props) => {
|
|
|
14167
14167
|
} else if (currentZoomLevel > 6) {
|
|
14168
14168
|
setIsVisible(true);
|
|
14169
14169
|
}
|
|
14170
|
-
}, [currentZoomLevel
|
|
14170
|
+
}, [currentZoomLevel]);
|
|
14171
14171
|
useEffect(() => {
|
|
14172
14172
|
if (!hoveredConnection) {
|
|
14173
14173
|
setIsVisible(true);
|
|
@@ -14181,7 +14181,7 @@ const SourcesPorts = (props) => {
|
|
|
14181
14181
|
setIsVisible(false);
|
|
14182
14182
|
setIsFocused(false);
|
|
14183
14183
|
}
|
|
14184
|
-
}, [hoveredConnection, data == null ? void 0 : data.u_id, currentZoomLevel]);
|
|
14184
|
+
}, [hoveredConnection == null ? void 0 : hoveredConnection.u_id, data == null ? void 0 : data.u_id, currentZoomLevel]);
|
|
14185
14185
|
useEffect(() => {
|
|
14186
14186
|
const map = mapApi == null ? void 0 : mapApi.current;
|
|
14187
14187
|
if (!map) return;
|