fix(Cell): arrow-direction assignment right is invalid (#11279)

This commit is contained in:
Tsdy 2022-11-21 10:22:20 +08:00 committed by GitHub
parent 772875535f
commit e18a3d49ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,7 +124,7 @@ export default defineComponent({
}
if (props.isLink) {
const name = props.arrowDirection
const name = props.arrowDirection && props.arrowDirection !== 'right'
? `arrow-${props.arrowDirection}`
: 'arrow';
return <Icon name={name} class={bem('right-icon')} />;