fix ui: fix max ws msg len
This commit is contained in:
parent
577734672d
commit
a8d5857e0f
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