mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-12-02 16:38:27 +00:00
Eslint fix
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import "es6-promise/auto";
|
||||
import {createStore} from "vuex";
|
||||
import {postLocation} from "./api";
|
||||
import { createStore } from "vuex";
|
||||
import { postLocation } from "./api";
|
||||
import prepareLocations from "./store.locations.js";
|
||||
import {fetchResults, makeFetch} from "ChillMainAssets/lib/api/apiMethods";
|
||||
import { fetchResults, makeFetch } from "ChillMainAssets/lib/api/apiMethods";
|
||||
|
||||
const debug = process.env.NODE_ENV !== "production";
|
||||
//console.log('window.activity', window.activity);
|
||||
@@ -103,7 +103,7 @@ const store = createStore({
|
||||
}
|
||||
// console.log("suggested users", suggestedUsers);
|
||||
|
||||
return suggestedUsers.filter(u => u.enabled === true);
|
||||
return suggestedUsers.filter((u) => u.enabled === true);
|
||||
},
|
||||
suggestedResources(state) {
|
||||
// const resources = state.activity.accompanyingPeriod.resources;
|
||||
|
||||
Reference in New Issue
Block a user