projects
/
vchess.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8ed318
)
Fix
author
Benjamin Auder
<benjamin.auder@somewhere>
Mon, 30 Mar 2020 19:22:44 +0000
(21:22 +0200)
committer
Benjamin Auder
<benjamin.auder@somewhere>
Mon, 30 Mar 2020 19:22:44 +0000
(21:22 +0200)
client/src/views/Hall.vue
patch
|
blob
|
blame
|
history
diff --git
a/client/src/views/Hall.vue
b/client/src/views/Hall.vue
index
0982af0
..
9d9df92
100644
(file)
--- a/
client/src/views/Hall.vue
+++ b/
client/src/views/Hall.vue
@@
-519,7
+519,7
@@
export default {
// o: challenge or game
classifyObject: function(o) {
// Consider imports as live games (TODO)
- if (!!o.id.match(/^i/)) return "live";
+ if (!!o.id
&& !!o.id
.match(/^i/)) return "live";
return o.cadence.indexOf("d") === -1 ? "live" : "corr";
},
setDisplay: function(letter, type, e) {