This commit is contained in:
Natsumi
2021-11-23 12:31:20 +13:00
parent ce068e558c
commit 0ee166dbfd
3 changed files with 10 additions and 10 deletions

View File

@@ -8210,10 +8210,9 @@ speechSynthesis.getVoices();
}
}
});
if (this.photonLobbyTimeout.length > 0 || hudTimeout.length > 0) {
hudTimeout.sort(function (a, b) {
if (a.time > b.time) {
return 1;
hudTimeout.sort(function (a, b) {
if (a.time > b.time) {
return 1;
}
if (a.time < b.time) {
return -1;
@@ -8244,12 +8243,14 @@ speechSynthesis.getVoices();
}
AppApi.ExecuteVrOverlayFunction(
'updateHudTimeout',
JSON.stringify(filteredHudTimeout)
);
}
JSON.stringify(filteredHudTimeout)
);
}
if (this.photonLobbyTimeout.length > 0 || hudTimeout.length > 0) {
this.photonLobbyTimeout = hudTimeout;
this.getCurrentInstanceUserList();
} else {
this.photonLobbyTimeout = hudTimeout;
}
this.photonBotCheck(event7List);
});

View File

@@ -97,7 +97,6 @@
}
.el-table__row:hover .el-table__cell .cell {
-webkit-box-orient: unset;
-webkit-line-clamp: unset;
}