UI - Fix handling of really long cert names (#38116)

<!-- Add the related story/sub-task/bug number, like Resolves #123, or
remove if NA -->
**Related issue:** Resolves #38107 


https://github.com/user-attachments/assets/86f509bf-da0a-45bf-ba16-3ea2b19800e1


- [x] QA'd all new/changed functionality manually
This commit is contained in:
jacobshandling
2026-01-09 11:57:17 -08:00
committed by GitHub
parent cb3f6184c9
commit 6f4845e4cd
2 changed files with 6 additions and 1 deletions
@@ -21,6 +21,7 @@ import PageDescription from "components/PageDescription";
import PremiumFeatureMessage from "components/PremiumFeatureMessage";
import SectionHeader from "components/SectionHeader";
import GenericMsgWithNavButton from "components/GenericMsgWithNavButton";
import TooltipTruncatedText from "components/TooltipTruncatedText";
import {
DEFAULT_USE_QUERY_OPTIONS,
@@ -160,7 +161,7 @@ const Certificates = ({
return (
<ListItem
graphic="file-certificate"
title={name}
title={<TooltipTruncatedText value={name} />}
details={details}
actions={
<GitOpsModeTooltipWrapper
@@ -6,4 +6,8 @@
&__mdm-disabled-message {
border: 1px solid $ui-fleet-black-10;
}
.list-item__title {
max-width: px-to-rem(900);
width: 36vw;
}
}