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";