diff options
| author | Zephyrrus <[email protected]> | 2020-07-10 01:13:51 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-07-10 01:13:51 +0300 |
| commit | 0f66d807035d3e32a66c7dc9bf55fb3be99aedac (patch) | |
| tree | 93ff9fd13a0434d91fb1ae7ca0da48d6929c4d00 /src/site/components/grid/Grid.vue | |
| parent | fix: stop leaking user passwords to admins AGAIN (diff) | |
| download | host.fuwn.me-0f66d807035d3e32a66c7dc9bf55fb3be99aedac.tar.xz host.fuwn.me-0f66d807035d3e32a66c7dc9bf55fb3be99aedac.zip | |
refactor: finish refactoring all the components to use vuex
Diffstat (limited to 'src/site/components/grid/Grid.vue')
| -rw-r--r-- | src/site/components/grid/Grid.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site/components/grid/Grid.vue b/src/site/components/grid/Grid.vue index 84c0b11..90c196b 100644 --- a/src/site/components/grid/Grid.vue +++ b/src/site/components/grid/Grid.vue @@ -287,7 +287,7 @@ export default { } catch (e) { this.$store.dispatch('alert/set', { text: e.message, error: true }, { root: true }); } - this.showingModalForFile.albums = this.images.filesAlbums[id]; + this.showingModalForFile.albums = this.images.fileAlbumsMap[id]; this.isAlbumsModalActive = true; }, |