diff --git a/src/components/Table/src/components/TableAction.vue b/src/components/Table/src/components/TableAction.vue index fd0aa425b..5ff4d9081 100644 --- a/src/components/Table/src/components/TableAction.vue +++ b/src/components/Table/src/components/TableAction.vue @@ -49,13 +49,13 @@ return props.actions.map((action) => { const { popConfirm } = action; return { + type: 'link', + size: 'small', ...action, ...(popConfirm || {}), onConfirm: popConfirm?.confirm, onCancel: popConfirm?.cancel, enable: !!popConfirm, - type: 'link', - size: 'small', }; }); }); diff --git a/src/layouts/default/header/index.less b/src/layouts/default/header/index.less index a29212ff0..1648967e8 100644 --- a/src/layouts/default/header/index.less +++ b/src/layouts/default/header/index.less @@ -135,6 +135,7 @@ &--light { background: @white; border-bottom: 1px solid @header-light-bottom-border-color; + border-left: 1px solid @header-light-bottom-border-color; .@{header-prefix-cls}-logo { color: @text-color-base; diff --git a/src/layouts/default/index.vue b/src/layouts/default/index.vue index c686c8aca..639058291 100644 --- a/src/layouts/default/index.vue +++ b/src/layouts/default/index.vue @@ -83,9 +83,5 @@ > .ant-layout { min-height: 100%; } - - &__main { - margin-left: 1px; - } }