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