Skip to content

Commit

Permalink
Make telemetry info table a little bit narrower and aligned (#233961)
Browse files Browse the repository at this point in the history
* Make telemetry info table a little bit narrower but aligned

* Match spaces after a checkmark to align table on some monospaced views
  • Loading branch information
mattmaniak authored Mar 6, 2025
1 parent 0826dde commit 78c206a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/vs/platform/telemetry/common/telemetryService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ function getTelemetryLevelSettingDescription(): string {
const telemetryTableDescription = localize('telemetry.telemetryLevel.tableDescription', "The following table outlines the data sent with each setting:");
const telemetryTable = `
| | ${crashReportsHeader} | ${errorsHeader} | ${usageHeader} |
|:------|:---------------------:|:---------------:|:--------------:|
| all | | ✓ | |
| error | | ✓ | - |
| crash | | - | - |
| off | - | - | - |
|:------|:-------------:|:---------------:|:----------:|
| all | ✓ | ✓ | |
| error | ✓ | ✓ | - |
| crash | ✓ | - | - |
| off | - | - | - |
`;

const deprecatedSettingNote = localize('telemetry.telemetryLevel.deprecated', "****Note:*** If this setting is 'off', no telemetry will be sent regardless of other telemetry settings. If this setting is set to anything except 'off' and telemetry is disabled with deprecated settings, no telemetry will be sent.*");
Expand Down

0 comments on commit 78c206a

Please sign in to comment.