Skip to content

Commit

Permalink
Fixing YARA Length Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
phutelmyer committed Jan 15, 2024
1 parent 4fdbc34 commit b2fdd3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ui/src/components/FileComponents/YaraOverviewCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const YaraOverviewCard = ({ data }) => {
padding: "8px",
alignItems: "center",
justifyContent: "space-between",
maxWidth: "-webkit-fill-available"
}}
color={item.color}
>
Expand All @@ -133,7 +134,7 @@ const YaraOverviewCard = ({ data }) => {
</Text>
<Paragraph
ellipsis={{ rows: 1, expandable: true }}
style={{ margin: 0, textAlign: "right", fontSize: "12px" }}
style={{ margin: 0, textAlign: "right", fontSize: "12px", overflow: "auto" }}
>
{item.description}
</Paragraph>
Expand All @@ -146,4 +147,4 @@ const YaraOverviewCard = ({ data }) => {
);
};

export default YaraOverviewCard;
export default YaraOverviewCard;

0 comments on commit b2fdd3c

Please sign in to comment.