Increase idle threshold to 5 minutes
This commit is contained in:
parent
e111899404
commit
d80f67dd1e
|
@ -91,7 +91,7 @@ const app = Vue.createApp({
|
|||
|
||||
// Idle detection variables
|
||||
idleTimeout: null,
|
||||
idleThreshold: 60, // number of seconds you must be idle
|
||||
idleThreshold: 300, // number of seconds you must be idle
|
||||
|
||||
// WebSocket connection.
|
||||
ws: {
|
||||
|
|
|
@ -479,7 +479,7 @@
|
|||
:class="{'is-active': c.ID == channel}">
|
||||
[[c.Name]]
|
||||
<span v-if="hasUnread(c.ID)"
|
||||
class="tag">
|
||||
class="tag is-success">
|
||||
[[hasUnread(c.ID)]]
|
||||
</span>
|
||||
</a>
|
||||
|
|
Loading…
Reference in New Issue
Block a user