Skip to content

Commit f48918f

Browse files
committed
1 parent 66aa5d1 commit f48918f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

chromium/extension/components/modals.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ window.modals = {
2828
// Show modal
2929
const aboutModal = modals.alert(
3030
`${this.imports.app.symbol} ${this.getMsg('appName')}`, // title
31-
`🧠 ${this.getMsg('about_author')}: ` // msg
31+
`<b>🧠 ${this.getMsg('about_author')}:</b> ` // msg
3232
+ `<a href="${this.imports.app.author.url}">${this.getMsg('appAuthor')}</a> ${this.getMsg('about_and')}`
3333
+ ` <a href="${this.imports.app.urls.contributors}">${this.getMsg('about_contributors')}</a>\n`
34-
+ `🏷️ ${this.getMsg('about_version')}: <span class="about-em">${this.imports.app.version}</span>\n`
35-
+ `📜 ${this.getMsg('about_openSourceCode')}: `
34+
+ `<b>🏷️ ${this.getMsg('about_version')}:</b> <span class="about-em">${this.imports.app.version}</span>\n`
35+
+ `<b>📜 ${this.getMsg('about_openSourceCode')}:</b> `
3636
+ `<a href="${this.imports.app.urls.gitHub}" target="_blank" rel="nopener">`
3737
+ this.imports.app.urls.gitHub + '</a>\n'
38-
+ `⚡ ${this.getMsg('about_poweredBy')}: `
38+
+ `<b>${this.getMsg('about_poweredBy')}:</b> `
3939
+ `<a href="${this.imports.app.urls.chatgptJS}" target="_blank" rel="noopener">chatgpt.js</a>`
4040
+ ` v${this.imports.app.chatgptJSver}`,
4141
modalBtns, '', 686

firefox/extension/components/modals.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ window.modals = {
2828
// Show modal
2929
const aboutModal = modals.alert(
3030
`${this.imports.app.symbol} ${this.getMsg('appName')}`, // title
31-
`🧠 ${this.getMsg('about_author')}: ` // msg
31+
`<b>🧠 ${this.getMsg('about_author')}:</b> ` // msg
3232
+ `<a href="${this.imports.app.author.url}">${this.getMsg('appAuthor')}</a> ${this.getMsg('about_and')}`
3333
+ ` <a href="${this.imports.app.urls.contributors}">${this.getMsg('about_contributors')}</a>\n`
34-
+ `🏷️ ${this.getMsg('about_version')}: <span class="about-em">${this.imports.app.version}</span>\n`
35-
+ `📜 ${this.getMsg('about_openSourceCode')}: `
34+
+ `<b>🏷️ ${this.getMsg('about_version')}:</b> <span class="about-em">${this.imports.app.version}</span>\n`
35+
+ `<b>📜 ${this.getMsg('about_openSourceCode')}:</b> `
3636
+ `<a href="${this.imports.app.urls.gitHub}" target="_blank" rel="nopener">`
3737
+ this.imports.app.urls.gitHub + '</a>\n'
38-
+ `⚡ ${this.getMsg('about_poweredBy')}: `
38+
+ `<b>${this.getMsg('about_poweredBy')}:</b> `
3939
+ `<a href="${this.imports.app.urls.chatgptJS}" target="_blank" rel="noopener">chatgpt.js</a>`
4040
+ ` v${this.imports.app.chatgptJSver}`,
4141
modalBtns, '', 686

0 commit comments

Comments
 (0)