Skip to content
Snippets Groups Projects
Commit 5cb7bb0e authored by Davut Beyazit's avatar Davut Beyazit
Browse files

Fixed acces to non existing object

parent 57463d52
Branches
Tags
No related merge requests found
......@@ -52,8 +52,7 @@ export class DialogActionButtonsComponent implements OnInit {
*/
@Input() cancelButtonClickAction: (Function | undefined);
@Input() resetButtonClickAction: (Function | undefined);
/**
* TRUE if some spacing will be rendered above the action buttons.
*/
......
......@@ -16,7 +16,7 @@
{{cTime}}
</h2>
<ng-container *ngIf="room.closed">
<ng-container *ngIf="room && room.closed">
<h1>{{'header.questions-blocked'|translate}}</h1>
</ng-container>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment