add alwaysRender

This commit is contained in:
AAGaming
2022-10-14 23:43:45 -04:00
parent 87a7361dc7
commit 739b57e100
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ const PluginView: VFC = () => {
className={joinClassNames(staticClasses.TabGroupPanel, scrollClasses.ScrollPanel, scrollClasses.ScrollY)}
style={{ height: '100%' }}
>
{visible && activePlugin.content}
{(visible || activePlugin.alwaysRender) && activePlugin.content}
</div>
</Focusable>
);