fix: remove redundant check in template
This commit is contained in:
@@ -34,7 +34,6 @@ const avoidFlickerTimeout = 7;
|
|||||||
export const ComponentView: FunctionalComponent<IProps> = observer(
|
export const ComponentView: FunctionalComponent<IProps> = observer(
|
||||||
({
|
({
|
||||||
application,
|
application,
|
||||||
appState,
|
|
||||||
onLoad,
|
onLoad,
|
||||||
componentUuid,
|
componentUuid,
|
||||||
templateComponent
|
templateComponent
|
||||||
@@ -194,6 +193,7 @@ export const ComponentView: FunctionalComponent<IProps> = observer(
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
reloadStatus();
|
reloadStatus();
|
||||||
|
|
||||||
if (!iframeRef.current) {
|
if (!iframeRef.current) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -250,7 +250,7 @@ export const ComponentView: FunctionalComponent<IProps> = observer(
|
|||||||
onVisibilityChange
|
onVisibilityChange
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}, [appState, application, component, componentUuid, onVisibilityChange, reloadStatus, templateComponent]);
|
}, [application, component, componentUuid, onVisibilityChange, templateComponent]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// Set/update `component` based on `componentUuid` prop.
|
// Set/update `component` based on `componentUuid` prop.
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
#tags-column.sn-component.section.tags(aria-label='Tags')
|
#tags-column.sn-component.section.tags(aria-label='Tags')
|
||||||
.component-view-container(ng-if='self.component && self.component.active')
|
.component-view-container(ng-if='self.component')
|
||||||
component-view.component-view(
|
component-view.component-view(
|
||||||
component-uuid='self.component.uuid',
|
component-uuid='self.component.uuid',
|
||||||
application='self.application'
|
application='self.application'
|
||||||
app-state='self.appState'
|
app-state='self.appState'
|
||||||
)
|
)
|
||||||
#tags-content.content(ng-if='!(self.component && self.component.active)')
|
#tags-content.content(ng-if='!(self.component)')
|
||||||
.tags-title-section.section-title-bar
|
.tags-title-section.section-title-bar
|
||||||
.section-title-bar-header
|
.section-title-bar-header
|
||||||
.sk-h3.title
|
.sk-h3.title
|
||||||
|
|||||||
Reference in New Issue
Block a user