Skip to content

Commit

Permalink
Moar Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-akamai committed Jan 26, 2024
1 parent 6d3d000 commit 66685e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const EditableText = (props: PassThroughProps) => {
<H1Header
className={classes.root}
data-qa-editable-text
title={`${text}${textSuffix ? textSuffix : ''}`}
title={`${text}${textSuffix ?? ''}`}
/>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ export const PlacementGroupsDetail = () => {
<DocumentTitleSegment segment={label} />
<LandingHeader
breadcrumbProps={{
crumbOverrides: [
{
label: 'Placement Groups',
position: 1,
},
],
onEditHandlers: {
editableTextTitle: label,
editableTextTitleSuffix: ` (${affinityLabel})`,
Expand Down

0 comments on commit 66685e0

Please sign in to comment.