Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a585d9e commit 14a3c91Copy full SHA for 14a3c91
‎client/packages/lowcoder/src/pages/ApplicationV2/HomeResCard.tsx
@@ -332,7 +332,7 @@ export function HomeResCard(props: { res: HomeRes; onMove: (res: HomeRes) => voi
332
type="secondary"
333
style={{ fontSize: 12, textWrap: "wrap"}}
334
>
335
- {res?.description}
+ {res.description.length > 150 ? res.description.substring(0, 150) + '...' : res.description}
336
</Typography.Text>}
337
338
<AppTimeOwnerInfoLabel title={subTitle}>{subTitle}</AppTimeOwnerInfoLabel>
0 commit comments