projects
/
vchess.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
bf588c5
)
Fix typo game --> o (copy-pasted too quickly)
author
Benjamin Auder
<benjamin.auder@somewhere>
Tue, 2 Jun 2020 09:11:47 +0000
(11:11 +0200)
committer
Benjamin Auder
<benjamin.auder@somewhere>
Tue, 2 Jun 2020 09:11:47 +0000
(11:11 +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
547237f
..
4be708d
100644
(file)
--- a/
client/src/views/Hall.vue
+++ b/
client/src/views/Hall.vue
@@
-564,9
+564,9
@@
export default {
classifyObject: function(o) {
// No imported games here
return (
-
game
.cadence.indexOf("d") >= 0
+
o
.cadence.indexOf("d") >= 0
? "corr"
- : (
game
.cadence.indexOf("/") >= 0 ? "simul" : "live")
+ : (
o
.cadence.indexOf("/") >= 0 ? "simul" : "live")
);
},
setDisplay: function(letter, type, e) {