Fix classifyObject() in Hall
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 30 Mar 2020 19:09:55 +0000 (21:09 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 30 Mar 2020 19:09:55 +0000 (21:09 +0200)
client/src/views/Hall.vue

index 067a50d..0982af0 100644 (file)
@@ -516,8 +516,10 @@ export default {
     filterGames: function(type) {
       return this.games.filter(g => g.type == type);
     },
+    // o: challenge or game
     classifyObject: function(o) {
-      // o: challenge or game
+      // Consider imports as live games (TODO)
+      if (!!o.id.match(/^i/)) return "live";
       return o.cadence.indexOf("d") === -1 ? "live" : "corr";
     },
     setDisplay: function(letter, type, e) {