missing string added
This commit is contained in:
parent
33fdd0cc9b
commit
a96e87e95a
1 changed files with 1 additions and 1 deletions
|
|
@ -224,7 +224,7 @@ document.addEventListener('DOMContentLoaded', async () => {
|
||||||
let additionalInfoRow = e.target.closest('td').querySelector('.chatgpt_web_additional_info');
|
let additionalInfoRow = e.target.closest('td').querySelector('.chatgpt_web_additional_info');
|
||||||
if (additionalInfoRow.style.display === 'none' || additionalInfoRow.style.display === '') {
|
if (additionalInfoRow.style.display === 'none' || additionalInfoRow.style.display === '') {
|
||||||
additionalInfoRow.style.display = 'block';
|
additionalInfoRow.style.display = 'block';
|
||||||
e.target.innerText = browser.i18n.getMessage('customPrompts_hide_additional_info');
|
e.target.innerText = browser.i18n.getMessage('customPrompts_hide_additional_info') + ' [ChatGPT Web]';
|
||||||
} else {
|
} else {
|
||||||
additionalInfoRow.style.display = 'none';
|
additionalInfoRow.style.display = 'none';
|
||||||
e.target.innerText = browser.i18n.getMessage('customPrompts_show_additional_info') + ' [ChatGPT Web]';
|
e.target.innerText = browser.i18n.getMessage('customPrompts_show_additional_info') + ' [ChatGPT Web]';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue