Skip to content

Commit

Permalink
bugfix: webui table glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
paepckehh committed Jan 15, 2025
1 parent e5f668e commit df1615e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

// global exported consts
const SemVer = "v0.1.61"
const SemVer = "v0.1.62"

// global var
var (
Expand Down
6 changes: 3 additions & 3 deletions status.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func setOPNStatus(config *OPNCall, server, tag, notice string, id int, ts time.T
linkArchive := "<a href=\"./files/" + server + "/" + archive + "\" " + _nwin + "><button><b>[archive]</b></button></a>"
links := " <td>" + linkCurrent + " " + linkArchive + "</td>"
if tag != "" {
tag = "</td><td><b>" + tag + "</b>"
tag = "<td><b>" + tag + "</b></tb>"
}
status := state + " </td><td>" + linkUI + " " + linkVS + links + seen + tag
hiveMutex.Lock()
Expand Down Expand Up @@ -84,9 +84,9 @@ func setUnifiStatus(config *OPNCall, server, tag, notice string, ts time.Time, r
export = " <td><b>Export: </b>" + exportCurrent + " " + exportArchive + "</td>"
}
if tag != "" {
tag = "</td><td><b>" + tag + "</b>"
tag = "<td><b>" + tag + "</b>"
}
unifiStatus = state + " </td><td>" + linkUI + _b + links + export + seen + tag + "<br>"
unifiStatus = state + " </td><td>" + linkUI + " " + links + export + seen + tag
return
}
unifiStatus = _fail + unifiStatus
Expand Down

0 comments on commit df1615e

Please sign in to comment.