Skip to content

Commit

Permalink
fix: 修复dict-switch dict的value配置无效的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Oct 30, 2022
1 parent 5a9536f commit 5f40591
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ui/ui-antdv/src/antdv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,12 +448,12 @@ export class Antdv implements UiInterface {
name: "a-input-number"
};
switch: SwitchCI = {
activeColor: "active-color",
activeColor: "checkedColor",
activeText: "checkedChildren",
activeValue: "active-value",
inactiveColor: "inactive-color",
activeValue: "checkedValue",
inactiveColor: "unCheckedColor",
inactiveText: "unCheckedChildren",
inactiveValue: "inactive-value",
inactiveValue: "unCheckedValue",
modelValue: "checked",
name: "a-switch"
};
Expand Down

0 comments on commit 5f40591

Please sign in to comment.