fix: danger

pull/158/head
xingyu4j 2025-06-26 15:39:36 +08:00
parent eb960dd38e
commit 69ae45ee6d
1 changed files with 3 additions and 1 deletions

View File

@ -197,6 +197,7 @@ const buttonPropsMap = new Map<string, any>();
function getButtonProps(action: ActionItem) {
const key = JSON.stringify({
type: action.type,
danger: action.danger || false,
disabled: action.disabled,
loading: action.loading,
size: action.size,
@ -207,7 +208,8 @@ function getButtonProps(action: ActionItem) {
}
const res = {
type: action.type || 'primary',
type: action.type || 'link',
danger: action.danger || false,
disabled: action.disabled,
loading: action.loading,
size: action.size,