Added links to show user how to connect Streamlabs, StreamElements etc. accounts

This commit is contained in:
nuttylmao
2025-04-01 17:41:06 +11:00
parent 2f8af0ad6f
commit a43a2db8d5
4 changed files with 20 additions and 15 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ document.addEventListener('DOMContentLoaded', () => {
const saveButton = document.getElementById('save-settings');
fetch(settingsJson)
//fetch('settings.json')
//fetch('../multichat-overlay/settings/settings.json')
.then(response => response.json())
.then(data => {
const groupedSettings = {};
@@ -42,7 +42,7 @@ document.addEventListener('DOMContentLoaded', () => {
if (setting.description) {
const description = document.createElement('p');
description.textContent = setting.description;
description.innerHTML = setting.description;
labelDescriptionDiv.appendChild(description);
}