Ensure the refresh button works every time it is pushed.

Including the current time ensures that the URL is always different, so will always reload.
This commit is contained in:
CalDescent 2023-03-03 18:01:37 +00:00
parent 32b9dff3ea
commit 17b400e73c

View File

@ -1272,7 +1272,7 @@ class WebBrowser extends LitElement {
myNode.protocol + '://' + myNode.domain + ':' + myNode.port;
this.url = `${nodeUrl}/render/${this.service}/${this.name}${this.path != null ? this.path : ''
}?theme=${this.theme}&identifier=${this.identifier != null ? this.identifier : ''
}`;
}&time=${new Date().getMilliseconds()}`;
}
goBackToList() {