Skip to content

Commit

Permalink
fix: include type in table search filters
Browse files Browse the repository at this point in the history
  • Loading branch information
serhez committed Jun 17, 2024
1 parent dc52ccd commit 088045d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/research/table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function onRowClick(event: any) {
<div class="card">
<DataTable v-model:filters="filters" :value="props.publications" sortMode="multiple" removableSort paginator
showGridlines :rows="5" dataKey="id" filterDisplay="menu" :loading="loading" :rowHover="true"
@row-click="onRowClick" :globalFilterFields="['title', 'authors', 'venue', 'year', 'status']"
@row-click="onRowClick" :globalFilterFields="['title', 'authors', 'venue', 'year', 'type', 'status']"
class="cursor-pointer">
<template #header>
<div class="flex flex-row md:flex-row-reverse gap-2">
Expand Down

0 comments on commit 088045d

Please sign in to comment.