Skip to content

Commit

Permalink
fix: getCellStyle result add borderColor array
Browse files Browse the repository at this point in the history
  • Loading branch information
Rui-Sun committed Jun 15, 2023
1 parent 3899b59 commit 10fe183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vtable/src/core/BaseTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2662,7 +2662,7 @@ export abstract class BaseTable extends EventTarget implements BaseTableAPI {
textOverflow,
borderColor: isBoolean(theme.group.stroke)
? getProp('borderColor', actStyle, col, row, this)
: (theme.group.stroke as string),
: (theme.group.stroke as string | string[]),
borderLineWidth: theme.group.lineWidth,
borderLineDash: theme.group.lineDash,
underline: !!theme.text.underline,
Expand Down

0 comments on commit 10fe183

Please sign in to comment.