open-learning-exchange/planet

View on GitHub
src/app/teams/teams-reports-dialog.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component, Inject } from '@angular/core';
import { MAT_DIALOG_DATA } from '@angular/material/dialog';

@Component({
  templateUrl: './teams-reports-dialog.component.html',
  styles: [ `
    h3 {
      margin-bottom: 0;
    }
    .mat-subheading-1 {
      margin-top: 0;
    }
  ` ]
})
export class TeamsReportsDialogComponent {

  report: any = {};
  teamName: string;

  constructor(
    @Inject(MAT_DIALOG_DATA) public data: any
  ) {
    this.report = this.data.report;
    this.teamName = this.data.team.name;
  }

}