Fixed an issue where panels get disappeared. Regression of SonarQube fix.

This commit is contained in:
Akshay Joshi 2020-06-29 14:05:07 +05:30
parent 7add777b21
commit 102d6e7a9a

View File

@ -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