Fix problems edit
authorBenjamin Auder <benjamin.auder@somewhere>
Thu, 20 Feb 2020 21:52:54 +0000 (22:52 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Thu, 20 Feb 2020 21:52:54 +0000 (22:52 +0100)
client/src/views/Problems.vue

index 152e455..1e8ff68 100644 (file)
@@ -322,7 +322,8 @@ export default {
       );
     },
     editProblem: function(prob) {
-      if (!prob.diag) this.setDiagram(prob); //V is loaded at this stage
+      // prob.diag might correspond to some other problem or be empty:
+      this.setDiagram(prob); //V is loaded at this stage
       this.copyProblem(prob, this.curproblem);
       window.doClick("modalNewprob");
     },