Browse Source

fix(ui): use entryListPageLinks state var instead of pageLinks (#27491)

Josh Ferge 3 years ago
parent
commit
6e5041c8cf
1 changed files with 1 additions and 2 deletions
  1. 1 2
      static/app/views/settings/organizationAuditLog/index.tsx

+ 1 - 2
static/app/views/settings/organizationAuditLog/index.tsx

@@ -100,11 +100,10 @@ class OrganizationAuditLog extends AsyncView<Props, State> {
 
   renderBody() {
     const currentEventType = this.props.location.query.event;
-
     return (
       <AuditLogList
         entries={this.state.entryList}
-        pageLinks={this.state.pageLinks}
+        pageLinks={this.state.entryListPageLinks}
         eventType={currentEventType}
         eventTypes={EVENT_TYPES}
         onEventSelect={this.handleEventSelect}