Fix tslint errors

This commit is contained in:
Kristóf Tóth
2019-08-12 17:08:26 +02:00
parent 97b911689b
commit 0543a36f09
5 changed files with 9 additions and 10 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ export class IdeComponent implements OnInit {
readHandler(message: IDEMessage) {
if (this.codeState === CodeState.SAVED) {
if (this.filename != message.filename) {
if (this.filename !== message.filename) {
this.filename = message.filename;
}
this.code = (message.content != null) ? message.content : this.code;