diff --git a/docs/en_US/release_notes_6_10.rst b/docs/en_US/release_notes_6_10.rst index 48677bbed..29174d5bd 100644 --- a/docs/en_US/release_notes_6_10.rst +++ b/docs/en_US/release_notes_6_10.rst @@ -19,6 +19,7 @@ Bug fixes ********* | `Issue #7372 `_ - Tell Docker to always pull the latest base images when building containers. + | `Issue #7373 `_ - Fixed an issue with geometry window zoom mouse scroll not working. | `Issue #7376 `_ - Fixed an issue where a popup for unsaved changes appears when clicking on the open file button for a blank query editor. | `Issue #7383 `_ - Fixed an issue where Preferences are not saved when the dialog is maximized. | `Issue #7388 `_ - Fixed an issue where an error message fills the entire window if the query is long. diff --git a/web/pgadmin/tools/sqleditor/static/js/components/sections/GeometryViewer.jsx b/web/pgadmin/tools/sqleditor/static/js/components/sections/GeometryViewer.jsx index b49d8762b..0cb4def07 100644 --- a/web/pgadmin/tools/sqleditor/static/js/components/sections/GeometryViewer.jsx +++ b/web/pgadmin/tools/sqleditor/static/js/components/sections/GeometryViewer.jsx @@ -1,4 +1,3 @@ - ///////////////////////////////////////////////////////////// // // pgAdmin 4 - PostgreSQL Tools @@ -398,7 +397,6 @@ export function GeometryViewer({rows, columns, column}) { crs={crs} zoom={2} center={[20, 100]} preferCanvas={true} - scrollWheelZoom={false} className={classes.mapContainer} whenCreated={(map)=>{ mapRef.current = map;