Updated troubleshooting link

This commit is contained in:
jamesread 2021-07-12 10:20:38 +01:00
parent 6c75d83280
commit e458bf490f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ function showBigError (type, friendlyType, message) {
const domErr = document.createElement('div') const domErr = document.createElement('div')
domErr.classList.add('error') domErr.classList.add('error')
domErr.innerHTML = '<h1>Error ' + friendlyType + '</h1><p>' + message + "</p><p><a href = 'http://olivetin.app/_errors_troubleshooting.html' target = 'blank'/>OliveTin Documentation</a></p>" domErr.innerHTML = '<h1>Error ' + friendlyType + '</h1><p>' + message + "</p><p><a href = 'http://docs.olivetin.app/troubleshooting.html' target = 'blank'/>OliveTin Documentation</a></p>"
document.getElementById('rootGroup').appendChild(domErr) document.getElementById('rootGroup').appendChild(domErr)
} }