Skip to content

Commit

Permalink
remove sorting from columns
Browse files Browse the repository at this point in the history
  • Loading branch information
fariss committed Aug 16, 2024
1 parent 19e2097 commit 00cce58
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions web/explorer/src/components/FunctionCapabilities.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,7 @@
</template>
</Column>

<Column
field="rule"
sortable
header="Rule Matches"
class="w-min"
:showFilterMenu="false"
:showClearButton="false"
>
<Column field="rule" header="Rule Matches" class="w-min" :showFilterMenu="false" :showClearButton="false">
<template #filter v-if="props.showColumnFilters">
<InputText v-model="filters['rule'].value" placeholder="Filter by rule" />
</template>
Expand All @@ -53,7 +46,7 @@
</template>
</Column>

<Column field="namespace" sortable header="Namespace" :showFilterMenu="false" :showClearButton="false">
<Column field="namespace" header="Namespace" :showFilterMenu="false" :showClearButton="false">
<template #filter v-if="props.showColumnFilters">
<InputText v-model="filters['namespace'].value" placeholder="Filter by namespace" />
</template>
Expand Down

0 comments on commit 00cce58

Please sign in to comment.