Fix hardcoded banner issue from !703

This commit is contained in:
Zedifus 2024-02-02 22:41:07 +00:00
parent 4f715ba614
commit 50e65f6531

View File

@ -489,7 +489,7 @@
if (link) {
let linkEl = document.createElement('a')
linkEl.href = link;
linkEl.innerHTML = "See our documentation for details.";
linkEl.innerHTML = link_msg;
//linkEl.style.color = 'white';
linkEl.style.textDecoration = 'underline';
linkEl.target = "_blank";