Fixed Bug 68469 - Settings: Integration. The full description of the plugin is not displayed.

This commit is contained in:
Timofey Boyko 2024-07-02 13:59:51 +03:00
parent e7d870558e
commit 22533a37f6
2 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,9 @@ const PluginSDK = ({
</Text>
</div>
</div>
<Text className={"description-text"}>{p.description}</Text>
<Text className={"description-text"} title={p.description}>
{p.description}
</Text>
<Button
icon={icon}
onClick={() => window.open(p.homePage, "_blank")}

View File

@ -104,6 +104,7 @@ const PluginItem = ({
className="plugin-description"
fontWeight={400}
lineHeight="20px"
title={description}
>
{description}
</Text>