1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 06:53:07 +01: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

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;
}