mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 03:23:50 +00:00
* Adding more test cases * Removing unnecessary file * Test cases update * Adding the fixme for strict types * moving the fixme * add risk insight data service and wire up components to it * hook up all applications to risk insights report service. add loading state * link up remaining props to risk insight report * wire up children to risk insight data service * add missing copy. remove loading state from risk insights * fix types * fix DI issue * remove @Injectable from RiskInsightsDataService --------- Co-authored-by: Tom <ttalty@bitwarden.com> Co-authored-by: Tom <144813356+ttalty@users.noreply.github.com>
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Component } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
|
|
@Component({
|
|
selector: "tools-risk-insights-loading",
|
|
standalone: true,
|
|
imports: [CommonModule, JslibModule],
|
|
templateUrl: "./risk-insights-loading.component.html",
|
|
})
|
|
export class ApplicationsLoadingComponent {
|
|
constructor() {}
|
|
}
|