Browse Source

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.
q-apps
CalDescent 2 years ago
parent
commit
17b400e73c
  1. 2
      qortal-ui-plugins/plugins/core/qdn/browser/browser.src.js

2
qortal-ui-plugins/plugins/core/qdn/browser/browser.src.js

@ -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() {

Loading…
Cancel
Save