Skip to content

Commit 109c761

Browse files
committed
fix: remove shortNames from GVKType
1 parent bd22217 commit 109c761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Pages/ResourceBrowser/ResourceBrowser.Types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ export interface GVKType {
2020
Group: string
2121
Version: string
2222
Kind: Nodes | NodeType
23-
shortNames?: string[] | null
2423
}
2524

26-
export interface ApiResourceGroupType extends Pick<GVKType, 'shortNames'> {
25+
export interface ApiResourceGroupType {
2726
gvk: GVKType
2827
namespaced: boolean
2928
isGrouped?: boolean
29+
shortNames?: string[] | null
3030
}
3131

3232
export interface ApiResourceType {

0 commit comments

Comments
 (0)