File tree Expand file tree Collapse file tree 3 files changed +19
-19
lines changed Expand file tree Collapse file tree 3 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -753,15 +753,12 @@ const ChartListHeader = ({ charts }) => {
753
753
</ h3 >
754
754
< p className = "mb-0 mt-4 pl-20" data-testid = "chart-store-list-subheading" >
755
755
Select chart to deploy.
756
- < a
757
- href = { getDocumentationUrl ( { docLinkKey : 'CHART_GROUP' } ) }
758
- rel = "noreferrer noopener"
759
- target = "_blank"
760
- className = "dc__link"
761
- data-testid = "chart-group-link"
762
- >
763
- Learn more about chart groups
764
- </ a >
756
+ < DocLink
757
+ dataTestId = "chart-group-link"
758
+ docLinkKey = "CHART_GROUP"
759
+ text = "Learn more about chart groups"
760
+ fontWeight = "normal"
761
+ />
765
762
</ p >
766
763
</ div >
767
764
)
@@ -790,15 +787,12 @@ export const EmptyChartGroup = ({
790
787
{ subTitle || 'Use chart groups to preconfigure and deploy frequently used charts together.' }
791
788
</ div >
792
789
{ ! removeLearnMore && (
793
- < a
794
- href = { getDocumentationUrl ( { docLinkKey : 'CHART_GROUP' } ) }
795
- rel = "noreferrer noopener"
796
- target = "_blank"
797
- className = "dc__link"
798
- data-testid = "chart-group-link"
799
- >
800
- Learn more about chart groups
801
- </ a >
790
+ < DocLink
791
+ dataTestId = "chart-group-link"
792
+ docLinkKey = "CHART_GROUP"
793
+ text = "Learn more about chart groups"
794
+ fontWeight = "normal"
795
+ />
802
796
) }
803
797
{ typeof onClickViewChartButton === 'function' ? (
804
798
< button type = "button" onClick = { onClickViewChartButton } className = "cta ghosted flex mb-24 mt-24" >
Original file line number Diff line number Diff line change 12
12
}
13
13
}
14
14
}
15
+
16
+ .side-panel-documentation {
17
+ & __header {
18
+ flex : 0 0 48px ;
19
+ }
20
+ }
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const SidePanelDocumentation = ({ onClose }: SidePanelDocumentationProps)
30
30
31
31
return (
32
32
< >
33
- < div className = "px-16 pt-12 pb-11 border__primary--bottom flex dc__gap-12 dc__no-shrink " >
33
+ < div className = "side-panel-documentation__header px-16 pt-12 pb-11 border__primary--bottom flex dc__gap-12" >
34
34
< Icon name = "ic-book-open" color = "N900" />
35
35
< h2 className = "m-0 fs-16 lh-1-5 fw-6 cn-9 flex-grow-1" > Documentation</ h2 >
36
36
< div className = "flex dc__gap-8" >
You can’t perform that action at this time.
0 commit comments