Skip to content

Commit

Permalink
feat: 网站支持按状态排序 (#3166)
Browse files Browse the repository at this point in the history
Refs #2193
  • Loading branch information
zhengkunwang223 authored Dec 4, 2023
1 parent d087811 commit 10aff32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/website/website/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
</el-button>
</template>
</el-table-column>
<el-table-column :label="$t('commons.table.status')" prop="status" width="120px">
<el-table-column :label="$t('commons.table.status')" prop="status" width="120px" sortable>
<template #default="{ row }">
<el-button
v-if="row.status === 'Running'"
Expand Down

0 comments on commit 10aff32

Please sign in to comment.