fix: message support function bug #554

pull/569/head
tangjinzhou 2019-03-06 10:51:52 +08:00
parent 4a31fd381e
commit bdda185974
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ function notice(args) {
) : ( ) : (
'' ''
)} )}
<span>{typeof content === 'function' ? args.content(h) : args.content}</span> <span>{typeof args.content === 'function' ? args.content(h) : args.content}</span>
</div> </div>
), ),
onClose: callback, onClose: callback,