1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00

Fix busy classname.

This commit is contained in:
Simo Kinnunen 2014-07-02 20:13:53 +09:00
parent 714867de59
commit b459e9f5bd

View file

@ -350,6 +350,9 @@ function DeviceStatusCell(options) {
case 'using':
a.className = classes + 'btn-primary'
break
case 'busy':
a.className = classes + 'btn-warning'
break
case 'available':
case 'ready':
case 'present':