mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Added special handling for the extension to resolve the dependency.
2) Added 'is_sys_obj' to the ignore list of Schema Diff. 3) Font awesome v5 fixes.
This commit is contained in:
@@ -135,6 +135,11 @@ function selectDependencies(data, isChecked) {
|
||||
}
|
||||
|
||||
setDependencies = function(rowData, dependencies, isChecked) {
|
||||
// Special handling for extension, if extension is present in the
|
||||
// dependency list then iterate and select only extension node.
|
||||
let extensions = dependencies.filter(item => item.type == 'extension');
|
||||
if (extensions.length > 0) dependencies = extensions;
|
||||
|
||||
_.each(dependencies, function(dependency) {
|
||||
if (dependency.length == 0) return;
|
||||
let dependencyData = [];
|
||||
|
||||
Reference in New Issue
Block a user