Skip to content

Commit

Permalink
fix: show filter label if set
Browse files Browse the repository at this point in the history
  • Loading branch information
nextchamp-saqib committed Jan 16, 2024
1 parent 75e0737 commit eab1aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/dashboard/SimpleFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ function isValueSelected(value) {
:is="fieldtypesToIcon[filter.column?.type || 'String']"
class="h-4 w-4 flex-shrink-0 text-gray-600"
/>
<span class="truncate">{{ filter.column?.label }}</span>
<span class="truncate">{{ props.label || filter.column?.label }}</span>
</div>
<span v-if="filter.operator" class="flex-shrink-0 text-green-700">
{{ operatorLabel }}
Expand Down

0 comments on commit eab1aaa

Please sign in to comment.