Use const

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
This commit is contained in:
Kenji Okimoto 2018-09-12 17:55:20 +09:00
parent 1d3d4eaebe
commit f0e96ca000
No known key found for this signature in database
GPG Key ID: F9E3E329A5C5E4A1

View File

@ -24,7 +24,7 @@ $(document).ready(() => {
},
methods: {
addGrepContainer: function(containerType, index) {
let found = this.containers[containerType].indexOf(false);
const found = this.containers[containerType].indexOf(false);
if (found < 0) {
this.$set(this.containers[containerType], this.containers[containerType].length, true);
} else {