We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a2f8ba commit c064543Copy full SHA for c064543
electron_app/src/components/History.vue
@@ -20,10 +20,10 @@
20
Clear History
21
</div>
22
<div v-if="Object.values(app_state.app_data.history).length > 0">
23
- <div v-if="Object.values(app_state.app_data.history).length > 30">
+ <div v-if="get_history().length > 30">
24
<b-pagination
25
v-model="currentPage"
26
- :total-rows="Object.values(app_state.app_data.history).length"
+ :total-rows="get_history().length"
27
:per-page="30"
28
/>
29
0 commit comments