Skip to content

Commit bac50e1

Browse files
committed
1) Fixed an issue where User Language is not getting changed.
2) Fixed an issue where Import/Export Server menu is disabled. 3) Update few JavaScript dependencies.
1 parent b9c7e7e commit bac50e1

File tree

5 files changed

+290
-553
lines changed

5 files changed

+290
-553
lines changed

docs/en_US/release_notes_9_0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ Bug fixes
4242
| `Issue #8256 <https://github.com/pgadmin-org/pgadmin4/issues/8256>`_ - Fix the error occurring while loading preferences on startup.
4343
| `Issue #8273 <https://github.com/pgadmin-org/pgadmin4/issues/8273>`_ - Fixed an issue where copying query tool output cell is not working if any SQL text is selected.
4444
| `Issue #8299 <https://github.com/pgadmin-org/pgadmin4/issues/8299>`_ - Ensure master password pop up is not shown on setting MASTER_PASSWORD_REQUIRED to false.
45+
| `Issue #8309 <https://github.com/pgadmin-org/pgadmin4/issues/8309>`_ - Remove the option "With no data (concurrently)" from Refresh MATERIALIZED VIEW context menu.

web/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"css-loader": "^7.1.2",
3636
"css-minimizer-webpack-plugin": "^7.0.0",
3737
"eslint": "^9.17.0",
38-
"eslint-plugin-jest": "^28.8.0",
38+
"eslint-plugin-jest": "^28.10.0",
3939
"eslint-plugin-react": "^7.37.3",
4040
"eslint-plugin-unused-imports": "^4.1.4",
4141
"exports-loader": "^5.0.0",
@@ -85,7 +85,7 @@
8585
"@projectstorm/react-diagrams": "^7.0.4",
8686
"@simonwep/pickr": "^1.5.1",
8787
"@szhsin/react-menu": "^4.2.2",
88-
"@tanstack/react-query": "5.62.8",
88+
"@tanstack/react-query": "5.62.15",
8989
"@tanstack/react-table": "^8.16.0",
9090
"@tanstack/react-virtual": "^3.8.4",
9191
"@types/classnames": "^2.3.4",
@@ -138,7 +138,7 @@
138138
"react-frame-component": "^5.2.6",
139139
"react-leaflet": "^4.2.1",
140140
"react-new-window": "^1.0.1",
141-
"react-resize-detector": "^12.0.1",
141+
"react-resize-detector": "^12.0.2",
142142
"react-rnd": "^10.4.14",
143143
"react-select": "^5.7.2",
144144
"react-timer-hook": "^3.0.5",

web/pgadmin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def get_locale():
311311
if user is not None:
312312
user_id = user.id
313313
user_language = Preferences.raw_value(
314-
'misc', 'user_language', 'user_language', user_id
314+
'misc', 'user_language', 'user_interface', user_id
315315
)
316316
if user_language is not None:
317317
language = user_language

web/pgadmin/misc/workspaces/static/js/WorkspaceProvider.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export function WorkspaceProvider({children}) {
2424
const lastSelectedTreeItem = useRef();
2525
const isClassic = (usePreferences()?.getPreferencesForModule('misc')?.layout ?? 'classic') == 'classic';
2626

27+
pgAdmin.Browser.docker.currentWorkspace = WORKSPACES.DEFAULT;
2728
/* In case of classic UI all workspace objects should point to the
2829
* the instance of the default layout.
2930
*/

0 commit comments

Comments
 (0)