소스 검색

[metastore] Don't reference non existing variable in partition filter

Romain Rigaux 9 년 전
부모
커밋
516b22b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      apps/metastore/src/metastore/templates/describe_partitions.mako

+ 1 - 1
apps/metastore/src/metastore/templates/describe_partitions.mako

@@ -244,7 +244,7 @@ ${ assist.assistPanel() }
         _filters.forEach(function (filter) {
           _postData[filter.column] = filter.value;
         });
-        _postData["sort"] = viewModel.sortDesc() ? "desc" : "asc";
+        _postData["sort"] = self.sortDesc() ? "desc" : "asc";
 
         $.ajax({
           type: "POST",