summaryrefslogtreecommitdiff
path: root/src/views/Logs
diff options
context:
space:
mode:
authorNikhil Ashoka <a.nikhil@ibm.com>2024-05-28 09:26:41 +0300
committerGunnar Mills <gunnar@gmills.xyz>2024-06-11 20:34:55 +0300
commitd7cd12c2c1c907cae24af6af8711a20291624523 (patch)
tree196e1eb331cd42045f52dc4c31dd0c8d21f4a1f6 /src/views/Logs
parentb1daec6097304525c712142962a315efb73cca35 (diff)
downloadwebui-vue-d7cd12c2c1c907cae24af6af8711a20291624523.tar.xz
Fixed filter error in dumps page
- We were calling a method that is not present in @filtered. Fixed this by using the method that is added for this purpose and not used. Signed-off-by: Nikhil Ashoka <a.nikhil@ibm.com> Change-Id: I26b4b7d9be00c79c17dba382c0df6a0f02e1cd89
Diffstat (limited to 'src/views/Logs')
-rw-r--r--src/views/Logs/Dumps/Dumps.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/Logs/Dumps/Dumps.vue b/src/views/Logs/Dumps/Dumps.vue
index 020d2b3c..75873a8c 100644
--- a/src/views/Logs/Dumps/Dumps.vue
+++ b/src/views/Logs/Dumps/Dumps.vue
@@ -60,7 +60,7 @@
:empty-filtered-text="$t('global.table.emptySearchMessage')"
:filter="searchFilter"
:busy="isBusy"
- @filtered="onChangeSearchFilter"
+ @filtered="onFiltered"
@row-selected="onRowSelected($event, filteredTableItems.length)"
>
<!-- Checkbox column -->