mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
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.
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
"css-loader": "^7.1.2",
|
||||
"css-minimizer-webpack-plugin": "^7.0.0",
|
||||
"eslint": "^9.17.0",
|
||||
"eslint-plugin-jest": "^28.8.0",
|
||||
"eslint-plugin-jest": "^28.10.0",
|
||||
"eslint-plugin-react": "^7.37.3",
|
||||
"eslint-plugin-unused-imports": "^4.1.4",
|
||||
"exports-loader": "^5.0.0",
|
||||
@@ -85,7 +85,7 @@
|
||||
"@projectstorm/react-diagrams": "^7.0.4",
|
||||
"@simonwep/pickr": "^1.5.1",
|
||||
"@szhsin/react-menu": "^4.2.2",
|
||||
"@tanstack/react-query": "5.62.8",
|
||||
"@tanstack/react-query": "5.62.15",
|
||||
"@tanstack/react-table": "^8.16.0",
|
||||
"@tanstack/react-virtual": "^3.8.4",
|
||||
"@types/classnames": "^2.3.4",
|
||||
@@ -138,7 +138,7 @@
|
||||
"react-frame-component": "^5.2.6",
|
||||
"react-leaflet": "^4.2.1",
|
||||
"react-new-window": "^1.0.1",
|
||||
"react-resize-detector": "^12.0.1",
|
||||
"react-resize-detector": "^12.0.2",
|
||||
"react-rnd": "^10.4.14",
|
||||
"react-select": "^5.7.2",
|
||||
"react-timer-hook": "^3.0.5",
|
||||
|
||||
@@ -311,7 +311,7 @@ def create_app(app_name=None):
|
||||
if user is not None:
|
||||
user_id = user.id
|
||||
user_language = Preferences.raw_value(
|
||||
'misc', 'user_language', 'user_language', user_id
|
||||
'misc', 'user_language', 'user_interface', user_id
|
||||
)
|
||||
if user_language is not None:
|
||||
language = user_language
|
||||
|
||||
@@ -24,6 +24,7 @@ export function WorkspaceProvider({children}) {
|
||||
const lastSelectedTreeItem = useRef();
|
||||
const isClassic = (usePreferences()?.getPreferencesForModule('misc')?.layout ?? 'classic') == 'classic';
|
||||
|
||||
pgAdmin.Browser.docker.currentWorkspace = WORKSPACES.DEFAULT;
|
||||
/* In case of classic UI all workspace objects should point to the
|
||||
* the instance of the default layout.
|
||||
*/
|
||||
|
||||
833
web/yarn.lock
833
web/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user