Skip to content

Commit

Permalink
fix reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
doroudi committed Dec 21, 2024
1 parent 3dc9e72 commit e652457
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Review/ReviewManagement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
import { storeToRefs } from 'pinia'
import { useDialog, useMessage } from 'naive-ui'
const { t } = useI18n()
const store = useReviewStore()
const dialog = useDialog()
const message = useMessage()
Expand All @@ -18,7 +19,7 @@ const columns: DataTableColumns<RowData> = [
key: 'rate',
render(row) {
return [
h(NRate, { color: 'gold', readonly: true, defaultValue: row.rate, allowHalf: true }),
h(NRate, { color: 'gold', readonly: true, defaultValue: row.rate, allowHalf: false }),
]
},
fixed: 'left',
Expand Down

0 comments on commit e652457

Please sign in to comment.