Skip to content

Commit

Permalink
#10928: add description to top of resource tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelliney committed Aug 16, 2024
1 parent 9ca3198 commit 60d1cf0
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions src/shared/components/resources/ResourceTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,23 @@ export default class ResourceTab extends React.Component<

return (
<div>
<FeatureTitle
title={
this.currentResourceDatum.resourceDefinition.displayName
}
isLoading={false}
className="pull-left"
style={{ marginBottom: 10 }}
/>
<div style={{ display: 'flex', alignItems: 'flex-end' }}>
<FeatureTitle
title={
this.currentResourceDatum.resourceDefinition
.displayName
}
isLoading={false}
className="pull-left"
style={{ marginBottom: 10 }}
/>
<p style={{ marginLeft: '10px' }}>
{
this.currentResourceDatum.resourceDefinition
.description
}
</p>
</div>
<div
style={{
width: '100%',
Expand Down

0 comments on commit 60d1cf0

Please sign in to comment.