Ver código fonte

Merge branch 'iteration-video-change' into jenkins-main

lex 1 ano atrás
pai
commit
e2413087b0
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      src/student/pre-register-active/video.tsx

+ 2 - 2
src/student/pre-register-active/video.tsx

@@ -96,12 +96,12 @@ export default defineComponent({
           }
           if (item[0] < startNode && item[1] > startNode && item[1] <= endNode) {
             // console.log(4)
-            effective.push(startNode, item[1])
+            effective.push([startNode, item[1]])
           }
 
           if (item[0] < startNode && item[1] > startNode && item[1] > endNode) {
             // console.log(4)
-            effective.push(startNode, endNode)
+            effective.push([startNode, endNode])
           }
         }
       })