Skip to content
This repository has been archived by the owner on May 8, 2022. It is now read-only.

Commit

Permalink
Fix changes in timeshift not shown on the mapping page. Closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
SCP002 committed Mar 27, 2022
1 parent 836498c commit 187450d
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 41 deletions.
3 changes: 3 additions & 0 deletions html/js/menu_ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -1707,6 +1707,9 @@ function donePopupData(dataType, idsStr) {
}
document.getElementById(id).childNodes[7].firstChild.innerHTML = value;
break;
case "x-timeshift":
document.getElementById(id).childNodes[8].firstChild.innerHTML = value;
break;
default:
}
createSearchObj();
Expand Down
83 changes: 42 additions & 41 deletions src/webUI.go

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions ts/menu_ts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2176,6 +2176,10 @@ function donePopupData(dataType:string, idsStr:string) {

break

case "x-timeshift":
(document.getElementById(id).childNodes[8].firstChild as HTMLElement).innerHTML = value
break

default:

}
Expand Down

0 comments on commit 187450d

Please sign in to comment.