1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix indents

Signed-off-by: Hung-Han (Henry) Chen <chenhungh@gmail.com>
This commit is contained in:
Hung-Han (Henry) Chen 2021-09-30 14:23:19 +03:00
parent 7cb12190fe
commit 74ba7ed782
No known key found for this signature in database
GPG Key ID: 54B44603D251B788
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ export interface WebLinkStatus extends CatalogEntityStatus {
export type WebLinkSpec = {
url: string;
triggerOnRunAfterOnClickDetailIcon?: true,
triggerOnRunAfterOnClickDetailIcon?: true,
};
export class WebLink extends CatalogEntity<CatalogEntityMetadata, WebLinkStatus, WebLinkSpec> {

View File

@ -59,7 +59,7 @@ export interface CatalogCategoryEvents {
load: () => void;
catalogAddMenu: (context: CatalogEntityAddMenuContext) => void;
contextMenuOpen: (entity: CatalogEntity, context: CatalogEntityContextMenuContext) => void;
onClickDetailIcon: (entity: CatalogEntity, context: CatalogEntityActionContext) => void;
onClickDetailIcon: (entity: CatalogEntity, context: CatalogEntityActionContext) => void;
}
export abstract class CatalogCategory extends (EventEmitter as new () => TypedEmitter<CatalogCategoryEvents>) {