mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
switch to string | undefined
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
e020c9c500
commit
24395fdba8
@ -27,7 +27,7 @@ enum sortBy {
|
||||
export class Catalog extends React.Component {
|
||||
@observable private catalogEntityStore?: CatalogEntityStore;
|
||||
@observable.deep private contextMenu: CatalogEntityContextMenuContext;
|
||||
@observable activeTab: string;
|
||||
@observable activeTab?: string;
|
||||
|
||||
async componentDidMount() {
|
||||
this.contextMenu = {
|
||||
@ -89,7 +89,7 @@ export class Catalog extends React.Component {
|
||||
<div className="sidebarHeader">Catalog</div>
|
||||
<div className="sidebarTabs">
|
||||
<Tab
|
||||
value={null}
|
||||
value={undefined}
|
||||
key="*"
|
||||
label="Browse"
|
||||
data-testid="*-tab"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user