fix ui: fix max ws msg len (#2309)
This commit is contained in:
parent
43a04caa9f
commit
1126543bfd
1 changed files with 1 additions and 1 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue