mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
sda-2270 removed merge problem line
This commit is contained in:
parent
9db457e1ef
commit
c14a9a9ec9
@ -130,13 +130,10 @@ export default class AboutApp extends React.Component<{}, IState> {
|
||||
* Copies the version info on to the clipboard
|
||||
*/
|
||||
public copy(): void {
|
||||
const data = this.state;
|
||||
const { clientVersion, ...rest } = this.state;
|
||||
const data = { ...{ sbeVersion: clientVersion }, ...rest };
|
||||
if (data) {
|
||||
const { clientVersion, ...rest } = this.state;
|
||||
const data = { ...{ sbeVersion: clientVersion }, ...rest };
|
||||
if (data) {
|
||||
remote.clipboard.write({ text: JSON.stringify(data, null, 4) }, 'clipboard');
|
||||
}
|
||||
remote.clipboard.write({ text: JSON.stringify(data, null, 4) }, 'clipboard');
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user