From c82aa199dafd82a02ab236697257277c0d110d76 Mon Sep 17 00:00:00 2001 From: chiragsalian Date: Tue, 24 Oct 2023 12:37:34 -0700 Subject: [PATCH] renaming to getFlatHistory --- lib/ReportHistoryStore.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ReportHistoryStore.jsx b/lib/ReportHistoryStore.jsx index ff9a7534..5dddcec2 100644 --- a/lib/ReportHistoryStore.jsx +++ b/lib/ReportHistoryStore.jsx @@ -133,7 +133,7 @@ export default class ReportHistoryStore { // If we get here we have an incomplete history and should get // the report history again, but this time do not check the cache first. - this.getByActionID(reportID) + this.getFlatHistory(reportID) .done(reportHistory => promise.resolve(this.filterHiddenActions(reportHistory))) .fail(promise.reject); })