mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-21 08:24:14 -06:00
Fix an issue where the preferences JSON file has no effect when an external database is used. #7618
This commit is contained in:
parent
5c5b61c4db
commit
f3c95d9643
@ -549,9 +549,9 @@ class ManagePreferences:
|
||||
if f in prefs:
|
||||
ids = prefs[f].split(":")
|
||||
_row = {
|
||||
'mid': ids[0],
|
||||
'category_id': ids[1],
|
||||
'id': ids[2],
|
||||
'mid': int(ids[0]),
|
||||
'category_id': int(ids[1]),
|
||||
'id': int(ids[2]),
|
||||
'name': final_opt[2],
|
||||
'user_id': user_id,
|
||||
'value': val}
|
||||
|
Loading…
Reference in New Issue
Block a user