mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Fix unsafe comparison
This commit is contained in:
parent
f62c2f199c
commit
fa17b38215
@ -44,7 +44,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
} else {
|
} else {
|
||||||
console.log('Invalid ide layout "' + data.layout + '" received!');
|
console.log('Invalid ide layout "' + data.layout + '" received!');
|
||||||
}
|
}
|
||||||
if (data.hide_messages != undefined) {
|
if (data.hide_messages !== undefined) {
|
||||||
this.hide_messages = data.hide_messages;
|
this.hide_messages = data.hide_messages;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user