dlmarion commented on code in PR #6355:
URL: https://github.com/apache/accumulo/pull/6355#discussion_r3173761841
##########
server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/functions.js:
##########
@@ -86,12 +79,9 @@ function refresh() {
* Global timer that checks for auto refresh status every 5 seconds
*/
TIMER = setInterval(function () {
- if (sessionStorage.autoRefresh === 'true') {
- $('.auto-refresh').parent().addClass('active');
+ if (localStorage.getItem(AUTO_REFRESH_KEY) === 'true') {
Review Comment:
There is a bug here and I'm not sure what's going on. If the stored value is
true, then it's not refreshing. If it's false, then it is? What?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]