We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9180f4e commit 1c03d12Copy full SHA for 1c03d12
arduino-ide-extension/src/browser/contributions/about.ts
@@ -38,7 +38,7 @@ export class About extends Contribution {
38
Date: ${buildDate ? buildDate : 'dev build'}${buildDate && showAll ? ` (${this.ago(buildDate)})` : ''}
39
CLI Version: ${version}${cliStatus ? ` ${cliStatus}` : ''} [${commit}]
40
41
-Copyright © ${new Date().getFullYear()} Arduino SA
+${showAll ? `Copyright © ${new Date().getFullYear()} Arduino SA` : ''}
42
`;
43
const ok = 'OK';
44
const copy = 'Copy';
@@ -55,7 +55,7 @@ Copyright © ${new Date().getFullYear()} Arduino SA
55
});
56
57
if (buttons[response] === copy) {
58
- await this.clipboardService.writeText(detail(false));
+ await this.clipboardService.writeText(detail(false).trim());
59
}
60
61
0 commit comments