eslint-fix
This commit is contained in:
parent
a7a504b018
commit
e9dd333307
4 changed files with 9 additions and 10 deletions
|
@ -37,8 +37,8 @@ export default {
|
|||
$('.project-refs-target-form').hide();
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -36,7 +36,6 @@ const RepoEditor = {
|
|||
const newModel = this.monaco.editor.createModel(this.blobRaw, languageID);
|
||||
|
||||
this.monacoInstance.setModel(newModel);
|
||||
|
||||
}).catch(Helper.loadingError);
|
||||
},
|
||||
|
||||
|
@ -80,7 +79,7 @@ const RepoEditor = {
|
|||
|
||||
dialog: {
|
||||
handler(obj) {
|
||||
let newObj = obj;
|
||||
const newObj = obj;
|
||||
if (newObj.status) {
|
||||
newObj.status = false;
|
||||
this.openedFiles.map((file) => {
|
||||
|
|
|
@ -9,7 +9,7 @@ export default {
|
|||
computed: {
|
||||
html() {
|
||||
return this.activeFile.html;
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
@ -17,9 +17,9 @@ export default {
|
|||
this.$nextTick(() => {
|
||||
$(this.$el).find('.file-content').syntaxHighlight();
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -180,8 +180,8 @@ const RepoHelper = {
|
|||
Store.prevURL = Service.blobURLtoParentTree(Service.url);
|
||||
}
|
||||
}).catch((e) => {
|
||||
console.log(e)
|
||||
RepoHelper.loadingError()
|
||||
console.log(e);
|
||||
RepoHelper.loadingError();
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue