mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-28 17:24:47 -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.content = content
|
||||||
self.width = width
|
self.width = width
|
||||||
self.height = height
|
self.height = height
|
||||||
self.is_iframe = isIframe
|
self.isIframe = isIframe
|
||||||
self.show_title = showTitle
|
self.showTitle = showTitle
|
||||||
self.is_closeable = isCloseable
|
self.isCloseable = isCloseable
|
||||||
self.is_private = isPrivate
|
self.isPrivate = isPrivate
|
||||||
self.icon = icon
|
self.icon = icon
|
||||||
self.data = data
|
self.data = data
|
||||||
self.events = events
|
self.events = events
|
||||||
self.limit = limit
|
self.limit = limit
|
||||||
self.can_hide = canHide
|
self.canHide = canHide
|
||||||
if priority is None:
|
if priority is None:
|
||||||
global PRIORITY
|
global PRIORITY
|
||||||
PRIORITY += 100
|
PRIORITY += 100
|
||||||
|
Loading…
Reference in New Issue
Block a user