Skip to content

Commit

Permalink
chore: as linter
Browse files Browse the repository at this point in the history
  • Loading branch information
JustAnotherID committed Jun 10, 2024
1 parent fd325d4 commit e36af48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/mod/censor/CensorWords.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import type {Column} from "element-plus";
import type {CellRendererParams} from "element-plus/es/components/table-v2/src/types";
import {template} from "lodash-es";
const columns: Column<SensitiveWord>[] = [
const columns: Column<any>[] = [
{
key: "level",
title: "级别",
Expand All @@ -54,6 +54,7 @@ const columns: Column<SensitiveWord>[] = [
key: "related",
title: "匹配词汇",
dataKey: 'related',
width: 200,
cellRenderer: ({cellData: related, rowData}: CellRendererParams<SensitiveRelatedWord[]>) => {
if (related) {
return <el-space size="small" wrap>
Expand Down

0 comments on commit e36af48

Please sign in to comment.