|
|
|
@ -26,11 +26,9 @@
|
|
|
|
|
this.render();
|
|
|
|
|
this.$('textarea').val(i18n('loading'));
|
|
|
|
|
|
|
|
|
|
const operatingSystemInfo = `${i18n('operatingSystem', window.getOSRelease())}`;
|
|
|
|
|
const operatingSystemInfo = `Operating System: ${window.getOSRelease()}`;
|
|
|
|
|
|
|
|
|
|
const commitHashInfo = window.getCommitHash()
|
|
|
|
|
? i18n('commitHash', window.getCommitHash())
|
|
|
|
|
: '';
|
|
|
|
|
const commitHashInfo = window.getCommitHash() ? `Commit Hash: ${window.getCommitHash()}` : '';
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line more/no-then
|
|
|
|
|
window.log.fetch().then(text => {
|
|
|
|
|