mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix incorrect CRD casing (#3365)
Signed-off-by: vshakirova <vshakirova@mirantis.com>
This commit is contained in:
parent
5bccc27204
commit
c0c1139e3e
@ -139,7 +139,7 @@ export class CrdList extends React.Component {
|
||||
]}
|
||||
renderTableContents={(crd: CustomResourceDefinition) => [
|
||||
<Link key="link" to={crd.getResourceUrl()} onClick={stopPropagation}>
|
||||
{crd.getResourceTitle()}
|
||||
{crd.getResourceKind()}
|
||||
</Link>,
|
||||
crd.getGroup(),
|
||||
crd.getVersion(),
|
||||
|
||||
@ -73,7 +73,7 @@ export class Sidebar extends React.Component<Props> {
|
||||
key={crd.getResourceApiBase()}
|
||||
id={`crd-resource:${crd.getResourceApiBase()}`}
|
||||
url={crd.getResourceUrl()}
|
||||
text={crd.getResourceTitle()}
|
||||
text={crd.getResourceKind()}
|
||||
/>
|
||||
))}
|
||||
</SidebarItem>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user