1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-08-18 10:22:31 +02:00

correctly set tag filter for jobs, compute git sha before starting a job

This commit is contained in:
andreas
2023-10-02 20:31:29 +02:00
parent 9ddcbdc34a
commit faa946c8dc
5 changed files with 87 additions and 8 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ const fillValues=(values,items)=>{
const setValue=(id,value)=>{
let el=document.getElementById(id);
if (! el) return;
if (el.tagName == 'DIV'){
if (el.tagName == 'DIV' || el.tagName == 'SPAN' || el.tagName == 'P'){
el.textContent=value;
return;
}