mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 11:43:46 +00:00
Apply Prettier (#2238)
This commit is contained in:
@@ -1,20 +1,17 @@
|
||||
import {
|
||||
Component,
|
||||
OnInit,
|
||||
} from '@angular/core';
|
||||
import { Component, OnInit } from "@angular/core";
|
||||
|
||||
import { PopupUtilsService } from './services/popup-utils.service';
|
||||
import { PopupUtilsService } from "./services/popup-utils.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-tabs',
|
||||
templateUrl: 'tabs.component.html',
|
||||
selector: "app-tabs",
|
||||
templateUrl: "tabs.component.html",
|
||||
})
|
||||
export class TabsComponent implements OnInit {
|
||||
showCurrentTab: boolean = true;
|
||||
showCurrentTab: boolean = true;
|
||||
|
||||
constructor(private popupUtilsService: PopupUtilsService) { }
|
||||
constructor(private popupUtilsService: PopupUtilsService) {}
|
||||
|
||||
ngOnInit() {
|
||||
this.showCurrentTab = !this.popupUtilsService.inPopout(window);
|
||||
}
|
||||
ngOnInit() {
|
||||
this.showCurrentTab = !this.popupUtilsService.inPopout(window);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user