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