Skip to content

Commit 14919bb

Browse files
Akos Kittakittaakos
Akos Kitta
authored andcommitted
Fixed whitespace issue in About dialog.
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
1 parent 0b89cc4 commit 14919bb

File tree

1 file changed

+2
-3
lines changed
  • arduino-ide-extension/src/browser/contributions

1 file changed

+2
-3
lines changed

Diff for: arduino-ide-extension/src/browser/contributions/about.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,11 @@ export class About extends Contribution {
3636
const ideStatus = FrontendApplicationConfigProvider.get()['status'];
3737
const { version, commit, status: cliStatus } = await this.configService.getVersion();
3838
const buildDate = this.buildDate;
39-
const detail = (useAgo: boolean) => `
40-
Version: ${remote.app.getVersion()}
39+
const detail = (useAgo: boolean) => `Version: ${remote.app.getVersion()}
4140
Date: ${buildDate ? buildDate : 'dev build'}${buildDate && useAgo ? ` (${this.ago(buildDate)})` : ''}
4241
CLI Version: ${version}${cliStatus ? ` ${cliStatus}` : ''} [${commit}]
4342
44-
Copyright © ${new Date().getFullYear()} Arduino SA
43+
Copyright © ${new Date().getFullYear()} Arduino SA
4544
`;
4645
const ok = 'OK';
4746
const copy = 'Copy';

0 commit comments

Comments
 (0)