mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Resolved a typo in the version check condition during schema generation.
Also, resolved an issue related showing the correct server variant in properties dialog, it is a regression introduced by the patch server version check.
This commit is contained in:
@@ -470,7 +470,7 @@
|
||||
groups[group] = (groups[group] || []);
|
||||
var disabled = ((mode == 'properties') ||
|
||||
(server_info &&
|
||||
(s.server_type && _.indexOf(server_info.type in s.server_type) == -1) ||
|
||||
(s.server_type && !(server_info.type in s.server_type)) ||
|
||||
(s.min_version && s.min_version < server_info.version) ||
|
||||
(s.max_version && s.max_version > server_info.version)
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user