mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where custom sequences are not visible when show system objects are set to false. Fixes #5833
This commit is contained in:
@@ -254,7 +254,7 @@ class SequenceView(PGChildNodeView, SchemaDiffObjectCompare):
|
||||
show_system_objects=True)
|
||||
seq = [dep for dep in system_seq
|
||||
if dep['type'] == 'column' and dep['field'] == 'internal']
|
||||
if not seq:
|
||||
if len(seq) > 0:
|
||||
continue
|
||||
|
||||
# Append the node into the newly created list
|
||||
|
||||
Reference in New Issue
Block a user