Skip to content

Commit bdda185

Browse files
committed
fix: message support function bug #554
1 parent 4a31fd3 commit bdda185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/message/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function notice(args) {
7474
) : (
7575
''
7676
)}
77-
<span>{typeof content === 'function' ? args.content(h) : args.content}</span>
77+
<span>{typeof args.content === 'function' ? args.content(h) : args.content}</span>
7878
</div>
7979
),
8080
onClose: callback,

0 commit comments

Comments
 (0)