2 writes to _showTimestamp
Aspire.Dashboard (2)
Components\Pages\ConsoleLogs.razor.cs (2)
231
_showTimestamp
= consoleSettings.ShowTimestamp;
817
_showTimestamp
= showTimestamp;
6 references to _showTimestamp
Aspire.Dashboard (6)
Components\Pages\ConsoleLogs.razor.cs (6)
759
OnClick = () => ToggleTimestampAsync(showTimestamp: !
_showTimestamp
, isTimestampUtc: _isTimestampUtc),
760
Text =
_showTimestamp
? Loc[nameof(Dashboard.Resources.ConsoleLogs.ConsoleLogsTimestampHide)] : Loc[nameof(Dashboard.Resources.ConsoleLogs.ConsoleLogsTimestampShow)],
766
OnClick = () => ToggleTimestampAsync(showTimestamp:
_showTimestamp
, isTimestampUtc: !_isTimestampUtc),
769
IsDisabled = !
_showTimestamp
830
await LocalStorage.SetUnprotectedAsync(BrowserStorageKeys.ConsoleLogConsoleSettings, new ConsoleLogConsoleSettings(
_showTimestamp
, _isTimestampUtc, _noWrapLogs));
1497
new ComponentTelemetryProperty(TelemetryPropertyKeys.ConsoleLogsShowTimestamp, new AspireTelemetryProperty(
_showTimestamp
, AspireTelemetryPropertyType.UserSetting))