Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/showing-closed-reports' into sho…
Browse files Browse the repository at this point in the history
…wing-closed-reports
  • Loading branch information
cservakt committed May 15, 2024
2 parents 73982bf + 837fdf2 commit ceedc3e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Binary file modified web/api/py/codechecker_api/dist/codechecker_api.tar.gz
Binary file not shown.
Binary file not shown.
6 changes: 4 additions & 2 deletions web/server/codechecker_server/api/report_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1887,9 +1887,11 @@ def getDiffResultsHash(self, run_ids, report_hashes, diff_type,
@timeit
def getRunResults(self, run_ids, limit, offset, sort_types,
report_filter, cmp_data, get_details):
if report_filter.detectionStatus:
print("report_filter")
print(report_filter)
if report_filter.reportStatus:
print("report_filter")
print(report_filter.detectionStatus)
print(report_filter.reportStatus)
self.__require_view()

limit = verify_limit_range(limit)
Expand Down
4 changes: 2 additions & 2 deletions web/server/vue-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions web/server/vue-cli/src/views/Reports.vue
Original file line number Diff line number Diff line change
Expand Up @@ -490,9 +490,7 @@ export default {
const offset = limit * (this.pagination.page - 1);
const sortType = this.getSortMode();
const getDetails = false;
this.reportFilter.detectionStatus = [ 1 ];
console.log(this.reportFilter.reportStatus);
console.log(this.reportFilter.detectionStatus);
this.reportFilter.reportStatus = [ 1 ];
ccService.getClient().getRunResults(this.runIds, limit, offset, sortType,
this.reportFilter, this.cmpData, getDetails,
handleThriftError(reports => {
Expand Down

0 comments on commit ceedc3e

Please sign in to comment.