Add separate flag for progress indicators.

This commit is contained in:
Dermot Duffy
2022-10-05 22:02:33 -07:00
parent cae49e6dce
commit 65cf4cf22d
4 changed files with 28 additions and 7 deletions
+2 -1
View File
@@ -122,7 +122,8 @@ export function renderProgressIndicator(options?: {
return html`
<frigate-card-progress-indicator
.message=${options?.message || ''}
.animated=${options?.cardWideConfig?.performance?.profile !== 'low'}
.animated=${options?.cardWideConfig?.performance?.features
.animated_progress_indicator ?? true}
>
</frigate-card-progress-indicator>
`;