Cosmetic tweaks to loading status

This commit is contained in:
cmdr2 2022-10-17 18:04:46 +05:30
parent 22bf3618ea
commit 320acfae89
2 changed files with 3 additions and 3 deletions

View File

@ -483,7 +483,7 @@ img {
}
.waitingTaskLabel {
background:rgb(128, 89, 0);
border: 1px solid rgb(0, 75, 19);
border: 1px solid rgb(107, 75, 0);
color:rgb(255, 242, 211)
}
.secondaryButton {

View File

@ -320,10 +320,10 @@ async function healthCheck() {
setServerStatus('online', 'ready')
break
case 'LoadingModel':
setServerStatus('busy', 'loading model')
setServerStatus('busy', 'loading..')
break
case 'Rendering':
setServerStatus('busy', 'rendering')
setServerStatus('busy', 'rendering..')
break
default: // Unavailable
setServerStatus('error', serverState.status.toLowerCase())