frontend: remove recording access selection logic from recording config component
This commit is contained in:
parent
1aa6c8a383
commit
0e37d8cc09
@ -24,23 +24,6 @@
|
||||
></ov-selectable-card>
|
||||
}
|
||||
</div>
|
||||
|
||||
<!-- Recording Access Selection (only when recording is enabled) -->
|
||||
@if (shouldShowAccessSection) {
|
||||
<div
|
||||
class="access-selection-section"
|
||||
[class.slide-in-from-top]="isRecordingEnabled && !isAnimatingOut"
|
||||
[class.slide-out-to-top]="isAnimatingOut"
|
||||
>
|
||||
<div class="access-header">
|
||||
<mat-icon class="access-icon">security</mat-icon>
|
||||
<div class="access-title-group">
|
||||
<h4 class="access-title">Recording Access Control</h4>
|
||||
<p class="access-description">Choose who can access and view the recordings</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</form>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
@ -150,8 +150,4 @@ export class RecordingConfigComponent implements OnDestroy {
|
||||
get isRecordingEnabled(): boolean {
|
||||
return this.selectedValue === 'enabled';
|
||||
}
|
||||
|
||||
get shouldShowAccessSection(): boolean {
|
||||
return this.isRecordingEnabled || this.isAnimatingOut;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user