Increase idle threshold to 5 minutes

这个提交包含在:
Noah 2023-07-23 15:49:04 -07:00
父节点 e111899404
当前提交 d80f67dd1e
共有 2 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -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>