mirror of
https://github.com/opnsense/plugins.git
synced 2026-02-03 20:40:37 -05:00
chrony: fixes entity rendering (small fix) (#4904)
This commit is contained in:
parent
3f298fc57f
commit
c80d04f840
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
PLUGIN_NAME= chrony
|
||||
PLUGIN_VERSION= 1.5
|
||||
PLUGIN_REVISION= 2
|
||||
PLUGIN_REVISION= 3
|
||||
PLUGIN_COMMENT= Chrony time synchronisation
|
||||
PLUGIN_DEPENDS= chrony
|
||||
PLUGIN_MAINTAINER= m.muenz@gmail.com
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@
|
|||
// Put API call into a function, needed for auto-refresh
|
||||
function update_chronysources() {
|
||||
ajaxCall(url="/api/chrony/service/chronysources", sendData={}, callback=function(data,status) {
|
||||
$("#listchronysources").text(data['response']);
|
||||
$("#listchronysources").text($('<div>').html(data['response']).text());
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue