()
| 47 | } |
| 48 | |
| 49 | startTimeUpdates() { |
| 50 | if (this.timeUpdateInterval) { |
| 51 | clearInterval(this.timeUpdateInterval); |
| 52 | } |
| 53 | |
| 54 | this.timeUpdateInterval = setInterval(() => { |
| 55 | this.updateNotificationTimes(); |
| 56 | }, this.REFRESH_INTERVAL); |
| 57 | } |
| 58 | |
| 59 | updateNotificationTimes() { |
| 60 | const container = sidebarApps |
no test coverage detected