File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
arduino-ide-extension/src/browser/contributions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export class About extends Contribution {
38
38
Date: ${ buildDate ? buildDate : 'dev build' } ${ buildDate && showAll ? ` (${ this . ago ( buildDate ) } )` : '' }
39
39
CLI Version: ${ version } ${ cliStatus ? ` ${ cliStatus } ` : '' } [${ commit } ]
40
40
41
- Copyright © ${ new Date ( ) . getFullYear ( ) } Arduino SA
41
+ ${ showAll ? ` Copyright © ${ new Date ( ) . getFullYear ( ) } Arduino SA` : '' }
42
42
` ;
43
43
const ok = 'OK' ;
44
44
const copy = 'Copy' ;
@@ -55,7 +55,7 @@ Copyright © ${new Date().getFullYear()} Arduino SA
55
55
} ) ;
56
56
57
57
if ( buttons [ response ] === copy ) {
58
- await this . clipboardService . writeText ( detail ( false ) ) ;
58
+ await this . clipboardService . writeText ( detail ( false ) . trim ( ) ) ;
59
59
}
60
60
}
61
61
You can’t perform that action at this time.
0 commit comments