Skip to content

Commit 992c9f1

Browse files
authored
fix: show three dots only on collapsed strings (#118)
1 parent 1503867 commit 992c9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stores/typeRegistry.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export function predefined (): DataType<any>[] {
225225
>
226226
&quot;
227227
{value}
228-
{hasRest && <span>...</span>}
228+
{showRest ? <span>...</span> : <></>}
229229
&quot;
230230
</Box>
231231
)

0 commit comments

Comments
 (0)