mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-16 03:32:20 -06:00
Fixed an issue where panels get disappeared. Regression of SonarQube fix.
This commit is contained in:
parent
7add777b21
commit
102d6e7a9a
@ -26,15 +26,15 @@ class Panel(object):
|
||||
self.content = content
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.is_iframe = isIframe
|
||||
self.show_title = showTitle
|
||||
self.is_closeable = isCloseable
|
||||
self.is_private = isPrivate
|
||||
self.isIframe = isIframe
|
||||
self.showTitle = showTitle
|
||||
self.isCloseable = isCloseable
|
||||
self.isPrivate = isPrivate
|
||||
self.icon = icon
|
||||
self.data = data
|
||||
self.events = events
|
||||
self.limit = limit
|
||||
self.can_hide = canHide
|
||||
self.canHide = canHide
|
||||
if priority is None:
|
||||
global PRIORITY
|
||||
PRIORITY += 100
|
||||
|
Loading…
Reference in New Issue
Block a user