From 36f5cadf66c8276152a478dfae99345fd162e43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com> Date: Tue, 17 Mar 2020 21:52:05 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../courses/videostatistics/component/Studentstatistics.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/react/src/modules/courses/videostatistics/component/Studentstatistics.js b/public/react/src/modules/courses/videostatistics/component/Studentstatistics.js index aea47a1cb..44cdf6536 100644 --- a/public/react/src/modules/courses/videostatistics/component/Studentstatistics.js +++ b/public/react/src/modules/courses/videostatistics/component/Studentstatistics.js @@ -205,7 +205,7 @@ class Studentstatistics extends Component { let mysorder=""; if (sorter.order === "ascend") { if(sorter.columnKey === "feq"){ - mysorder="feq-asc"; + mysorder="freq-asc"; }else{ mysorder="total_duration-asc"; @@ -221,7 +221,7 @@ class Studentstatistics extends Component { }) } else if (sorter.order === "descend") { if(sorter.columnKey === "feq"){ - mysorder="feq-desc"; + mysorder="freq-desc"; }else{ mysorder="total_duration-desc";