We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The MessageList downButton prop is not true by default anymore, but the doc says that it should be true: https://detaysoft.github.io/docs-react-chat-elements/docs/messagelist#message-list-props
downButton
I guess it's missing the default value in the props destructuring, it should be downButton = true instead of downButton:
downButton = true
const MessageList: FC<IMessageListProps> = ({ referance = null, lockable = false, toBottomHeight = 300, downButton = true, ...props }) => {
Or the check should check for false instead of true:
{downButton !== false && _downButton && toBottomHeight !== '100%'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The MessageList
downButton
prop is not true by default anymore, but the doc says that it should be true:https://detaysoft.github.io/docs-react-chat-elements/docs/messagelist#message-list-props
I guess it's missing the default value in the props destructuring, it should be
downButton = true
instead ofdownButton
:Or the check should check for false instead of true:
The text was updated successfully, but these errors were encountered: