最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

conditional rendering - Render tooltip dynamically depending on the wrap attribute - Stack Overflow

programmeradmin0浏览0评论

I have this code:

<Tooltip
      title={
            <div>{Small description}</div>
        }
    >
        <Stack>
            <StyleOptionImage/>
            <Typography
                noWrap
            >
                {Tittle}
            </Typography>
            <Typography
                noWrap
            >
                {Description}
            </Typography>
        </Stack>
</Tooltip>

Due to the noWrap attribute if the value is true, the text will not wrap, but instead will truncate with a text overflow ellipsis. And that is the expected behaviour.

I need to display the tooltip if and only if the the world is truncated, and it has to dynamically update, depending on the size of the screen, too.

发布评论

评论列表(0)

  1. 暂无评论