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:21:54 +03:00
parent 184612e5a6
commit 7cb12190fe
No known key found for this signature in database
GPG Key ID: 54B44603D251B788
2 changed files with 21 additions and 21 deletions

View File

@ -232,20 +232,20 @@ export abstract class CatalogEntity<
}
/**
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority < this.onClickDetailIcon, if this.onClickDetailIcon presents, onRun won't be called.
*/
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority < this.onClickDetailIcon, if this.onClickDetailIcon presents, onRun won't be called.
*/
public abstract onRun?(context: CatalogEntityActionContext): void | Promise<void>;
public abstract onContextMenuOpen(context: CatalogEntityContextMenuContext): void | Promise<void>;
/**
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority > this.onRun, if presents, onRun won't be called.
*/
/**
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority > this.onRun, if presents, onRun won't be called.
*/
public abstract onClickDetailIcon?(context: CatalogEntityActionContext): void;
public abstract onSettingsOpen(context: CatalogEntitySettingsContext): void | Promise<void>;
}

View File

@ -103,11 +103,11 @@ export class CatalogEntityItem<T extends CatalogEntity> implements ItemObject {
}
/**
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority < this.onClickDetailIcon, if this.onClickDetailIcon presents, onRun won't be called.
*/
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority < this.onClickDetailIcon, if this.onClickDetailIcon presents, onRun won't be called.
*/
onRun(ctx: CatalogEntityActionContext) {
this.entity.onRun(ctx);
}
@ -118,11 +118,11 @@ export class CatalogEntityItem<T extends CatalogEntity> implements ItemObject {
}
/**
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority > this.onRun, if presents, onRun won't be called.
*/
* Trigger when user click on the icon in details panel
*
* @remarks
* Priority > this.onRun, if presents, onRun won't be called.
*/
onClickDetailIcon(ctx: CatalogEntityActionContext) {
this.entity.onClickDetailIcon?.(ctx);
}