fix ui: fix max ws msg len (#2309)

This commit is contained in:
Delirium 2024-06-27 10:56:18 +02:00 committed by GitHub
parent 43a04caa9f
commit 1126543bfd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,7 +63,7 @@ function Row({ msg }) {
>
{msg.data}
</span>
{msg.data.length > 100 ? (
{msg.data.length > 40 ? (
<div
className={
'rounded-full font-bold text-xl p-2 bg-white w-6 h-6 flex items-center justify-center'