mirror of
				https://github.com/avatao-content/frontend-tutorial-framework
				synced 2025-11-04 11:52:54 +00:00 
			
		
		
		
	Run IDE language detection only when selected file is changed
This commit is contained in:
		@@ -31,6 +31,7 @@ export class IdeComponent implements OnInit {
 | 
			
		||||
 | 
			
		||||
  files: string[];
 | 
			
		||||
  filename = '';
 | 
			
		||||
  lastFilename = '';
 | 
			
		||||
  code = 'Loading your file...';
 | 
			
		||||
 | 
			
		||||
  codeState = CodeState.SAVED;
 | 
			
		||||
@@ -94,7 +95,10 @@ export class IdeComponent implements OnInit {
 | 
			
		||||
      }
 | 
			
		||||
      this.code = (message.content != null) ? message.content : this.code;
 | 
			
		||||
      this.files = message.files;
 | 
			
		||||
      this.autoDetectEditorLanguage(this.filename);
 | 
			
		||||
      if (this.lastFilename !== this.filename) {
 | 
			
		||||
        this.autoDetectEditorLanguage(this.filename);
 | 
			
		||||
      }
 | 
			
		||||
      this.lastFilename = this.filename;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user