Eric Amodio пре 2 година
родитељ
комит
6a42229c8c
2 измењених фајлова са 3 додато и 3 уклоњено
  1. +1
    -1
      src/webviews/apps/home/components/header-card.ts
  2. +2
    -2
      src/webviews/apps/home/home.ts

+ 1
- 1
src/webviews/apps/home/components/header-card.ts Прегледај датотеку

@ -375,7 +375,7 @@ export class HeaderCard extends FASTElement {
this.progressNode.style.width = this.progress;
}
dismissStatus(e: MouseEvent) {
dismissStatus(_e: MouseEvent) {
this.pinStatus = false;
this.$emit('dismiss-status');

+ 2
- 2
src/webviews/apps/home/home.ts Прегледај датотеку

@ -137,13 +137,13 @@ export class HomeApp extends App {
this.updateState();
}
private onStatusDismissed(e: CustomEvent<undefined>, target: HTMLElement) {
private onStatusDismissed(_e: CustomEvent<undefined>, _target: HTMLElement) {
this.state.pinStatus = false;
this.sendCommand(DismissStatusCommandType, undefined);
this.updateHeader();
}
private onDataActionClicked(e: MouseEvent, target: HTMLElement) {
private onDataActionClicked(_e: MouseEvent, target: HTMLElement) {
const action = target.dataset.action;
this.onActionClickedCore(action);
}

Loading…
Откажи
Сачувај