Merge branch 'devel' into ng_bet
This commit is contained in:
+2
-2
@@ -87,7 +87,7 @@ $(function ($) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const keys: string[] = Object.keys(result.log);
|
const keys: string[] = Object.keys(result.log);
|
||||||
if (keys.length > 1 && keys[0] < keys[1]) {
|
if (keys.length > 1 && parseInt(keys[0]) < parseInt(keys[1])) {
|
||||||
keys.reverse();
|
keys.reverse();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@ $(function ($) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const html: string[] = [];
|
const html: string[] = [];
|
||||||
for (const key of Object.values(keys)) {
|
for (const key of keys) {
|
||||||
if ($(`#log_${logType}_${key}`).length) {
|
if ($(`#log_${logType}_${key}`).length) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user