Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
fix: update logs pages number (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fine0830 authored Jul 30, 2021
1 parent 653bb30 commit fc450c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/views/components/trace/trace-detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ limitations under the License. -->
:currentSize="pageSize"
:currentPage="pageNum"
@changePage="turnLogsPage"
:total="rocketTrace.traceLogsTotal"
:total="rocketTrace.traceSpanLogsTotal"
/>
<LogTable :tableData="rocketTrace.traceSpanLogs || []" :type="`service`" :noLink="true">
<div class="log-tips" v-if="!rocketTrace.traceSpanLogs.length">{{ $t('noData') }}</div>
Expand Down Expand Up @@ -121,7 +121,6 @@ limitations under the License. -->
LogTable,
},
})
export default class TraceDetail extends Vue {
@State('rocketTrace') private rocketTrace!: traceState;
@Action('rocketTrace/GET_TRACE_SPANS') private GET_TRACE_SPANS: any;
Expand Down

0 comments on commit fc450c8

Please sign in to comment.