allocate more space to the freq column

This commit is contained in:
Jakob Ketterl
2019-07-14 14:43:44 +02:00
parent 69c3a63794
commit 30b46c4cdd
3 changed files with 7 additions and 3 deletions

View File

@ -1405,7 +1405,7 @@ function update_wsjt_panel(msg) {
'<td>' + pad(t.getUTCHours()) + pad(t.getUTCMinutes()) + pad(t.getUTCSeconds()) + '</td>' +
'<td class="decimal">' + msg['db'] + '</td>' +
'<td class="decimal">' + msg['dt'] + '</td>' +
'<td class="decimal">' + msg['freq'] + '</td>' +
'<td class="decimal freq">' + msg['freq'] + '</td>' +
'<td class="message">' + linkedmsg + '</td>' +
'</tr>'
));