remove warn ability

This commit is contained in:
SowinskiBraeden committed 2022-11-30 10:40:40 -08:00
1 parent 603431a8e9
commit be766eb962
1 file changed
+1 -2
+1 -2
View File
@@ -34,11 +34,10 @@ function start() {
}
eel.expose(post_data);
function post_data(msg, warn=false) {
function post_data(msg) {
let newMessage = document.createElement('li');
newMessage.innerText = msg;
newMessage.className = 'nostyle';
if (warn) newMessage.style = 'color:yellow;';
document.getElementById('progress').appendChild(newMessage)
}