mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
Fix last activity sorting
This commit is contained in:
@@ -1025,6 +1025,7 @@ speechSynthesis.getVoices();
|
|||||||
tags: json.tags,
|
tags: json.tags,
|
||||||
developerType: json.developerType,
|
developerType: json.developerType,
|
||||||
last_login: json.last_login,
|
last_login: json.last_login,
|
||||||
|
last_activity: json.last_activity,
|
||||||
last_platform: json.last_platform,
|
last_platform: json.last_platform,
|
||||||
date_joined: json.date_joined,
|
date_joined: json.date_joined,
|
||||||
allowAvatarCopying: json.allowAvatarCopying,
|
allowAvatarCopying: json.allowAvatarCopying,
|
||||||
@@ -1279,6 +1280,7 @@ speechSynthesis.getVoices();
|
|||||||
tags: [],
|
tags: [],
|
||||||
developerType: '',
|
developerType: '',
|
||||||
last_login: '',
|
last_login: '',
|
||||||
|
last_activity: '',
|
||||||
last_platform: '',
|
last_platform: '',
|
||||||
date_joined: '',
|
date_joined: '',
|
||||||
allowAvatarCopying: false,
|
allowAvatarCopying: false,
|
||||||
@@ -1358,6 +1360,7 @@ speechSynthesis.getVoices();
|
|||||||
json.state = 'active';
|
json.state = 'active';
|
||||||
}
|
}
|
||||||
json.last_login = API.currentUser.last_login;
|
json.last_login = API.currentUser.last_login;
|
||||||
|
json.last_activity = API.currentUser.last_activity;
|
||||||
if (
|
if (
|
||||||
typeof json.location !== 'undefined' &&
|
typeof json.location !== 'undefined' &&
|
||||||
json.location === 'offline'
|
json.location === 'offline'
|
||||||
@@ -1405,6 +1408,7 @@ speechSynthesis.getVoices();
|
|||||||
tags: [],
|
tags: [],
|
||||||
developerType: '',
|
developerType: '',
|
||||||
last_login: '',
|
last_login: '',
|
||||||
|
last_activity: '',
|
||||||
last_platform: '',
|
last_platform: '',
|
||||||
date_joined: '',
|
date_joined: '',
|
||||||
allowAvatarCopying: false,
|
allowAvatarCopying: false,
|
||||||
|
|||||||
+1
-1
@@ -1015,7 +1015,7 @@ html
|
|||||||
div.options-container-item
|
div.options-container-item
|
||||||
el-slider(v-model="asideWidth" @input="setAsideWidth" :show-tooltip="false" :marks="{236: ''}" :min="141" :max="500" style="width:300px")
|
el-slider(v-model="asideWidth" @input="setAsideWidth" :show-tooltip="false" :marks="{236: ''}" :min="141" :max="500" style="width:300px")
|
||||||
div.options-container
|
div.options-container
|
||||||
span.header User Colors
|
span.header User Colours
|
||||||
div.options-container-item
|
div.options-container-item
|
||||||
span.name Random colours from user ID
|
span.name Random colours from user ID
|
||||||
el-switch(v-model="randomUserColours" @change="updatetrustColor")
|
el-switch(v-model="randomUserColours" @change="updatetrustColor")
|
||||||
|
|||||||
Reference in New Issue
Block a user