Use nullish coalescing operator (#11294)
This commit is contained in:
parent
545371011a
commit
96cde67b2c
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ export default function(props: {
|
|||
case 'mention': {
|
||||
return [h(MkMention, {
|
||||
key: Math.random(),
|
||||
host: (token.props.host == null && props.author && props.author.host != null ? props.author.host : token.props.host) || host,
|
||||
host: (token.props.host == null && props.author && props.author.host != null ? props.author.host : token.props.host) ?? host,
|
||||
username: token.props.username,
|
||||
})];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue