diff options
| author | Zephyrrus <[email protected]> | 2020-07-08 04:00:12 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-07-08 04:00:12 +0300 |
| commit | ad852de51a0d2dd5d29c08838d5a430c58849e74 (patch) | |
| tree | a4ab9a720f66271c9eba10916061a9b06c43656e /src/site/components/grid | |
| parent | refactor: refactor grid to use vuex for every action (diff) | |
| download | host.fuwn.me-ad852de51a0d2dd5d29c08838d5a430c58849e74.tar.xz host.fuwn.me-ad852de51a0d2dd5d29c08838d5a430c58849e74.zip | |
chore: linter the entire project using the new rules
Diffstat (limited to 'src/site/components/grid')
| -rw-r--r-- | src/site/components/grid/Grid.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/site/components/grid/Grid.vue b/src/site/components/grid/Grid.vue index 42dcc6b..84c0b11 100644 --- a/src/site/components/grid/Grid.vue +++ b/src/site/components/grid/Grid.vue @@ -163,7 +163,7 @@ <hr> <div class="albums-container"> - <div v-for="(album, index) in albums" :key="album.id" class="album"> + <div v-for="album in albums" :key="album.id" class="album"> <div class="field"> <b-checkbox :value="isAlbumSelected(album.id)" @@ -252,7 +252,7 @@ export default { methods: { async search() { const data = await this.$search.do(this.searchTerm, ['name', 'original', 'type', 'albums:name']); - console.log('> Search result data', data); + console.log('> Search result data', data); // eslint-disable-line no-console }, deleteFile(file) { // this.$emit('delete', file); |