mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 20:12:20 +00:00
22 lines
874 B
Plaintext
22 lines
874 B
Plaintext
<div class="stretch-container">
|
|
<div class="title-bar-additional-btns-left">
|
|
@if (this.ViewModel.TelemetryEnabled)
|
|
{
|
|
<button class="title-bar-btn" @onclick="this.ViewModel.DisableTelemetry" title="Disable telemetry">
|
|
<FluentIcon Value="new Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.Size16.CloudCheckmark()" />
|
|
</button>
|
|
}
|
|
else
|
|
{
|
|
<button class="title-bar-btn" @onclick="this.ViewModel.EnableTelemetry" title="Enable telemetry">
|
|
<FluentIcon Value="new Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.Size16.CloudDismiss()" />
|
|
</button>
|
|
}
|
|
</div>
|
|
<div class="body backdrop-panel">
|
|
@TelemetryViewModel.DisclaimerText
|
|
</div>
|
|
</div>
|
|
|
|
@page "/telemetry"
|
|
@inherits ViewBase<TelemetryView, TelemetryViewModel> |