Skip to content

Commit

Permalink
feat(list): показывать поля в зависимости от отфильтрованных сайтов
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Sep 5, 2018
1 parent ae5ae38 commit 89cd18d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ export default {
let fields = [];
let fieldPaths = [];
for (let siteInd in this.sites) {
let site = this.sites[siteInd];
for (let siteInd in this.filteredSites) {
let site = this.filteredSites[siteInd];
let objs = {
'': site,
Expand Down

0 comments on commit 89cd18d

Please sign in to comment.