Skip to content

Commit

Permalink
Fix wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel committed Sep 27, 2023
1 parent 833a832 commit d72999f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatDialogModule } from '@angular/material/dialog';
import { MatIconModule } from '@angular/material/icon';
import { MatLegacyDialogModule as MatDialogModule } from '@angular/material/legacy-dialog';
import { OpenSlidesTranslationModule } from 'src/app/site/modules/translations';

import { ChessDialogComponent } from './components/chess-dialog/chess-dialog.component';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<mat-dialog-content>
<div mat-dialog-content>
<div class="flex-container">
<h2 mat-dialog-title class="left-align no-margin">{{ caption | translate }}</h2>
<button mat-icon-button mat-dialog-close>
Expand All @@ -18,4 +18,4 @@ <h2 mat-dialog-title class="left-align no-margin">{{ caption | translate }}</h2>
<div *ngIf="!inMeeting">
{{ 'Open a meeting to play chess' | translate }}
</div>
</mat-dialog-content>
</div>

0 comments on commit d72999f

Please sign in to comment.