Minor - format code

pull/4004/head
Julio 3 years ago
parent 3b0b977985
commit 127da262b1
  1. 6
      assets/vue/store/modules/crud.js
  2. 1
      assets/vue/views/ccalendarevent/List.vue
  3. 9
      config/services.yaml

@ -382,13 +382,13 @@ export default function makeCrudModule({
});
},
[ACTIONS.SET_CREATED]: (state, created) => {
console.log('set _created');
console.log(created);
//console.log('set _created');
//console.log(created);
Object.assign(state, { created });
state.created = created;
},
[ACTIONS.SET_DELETED]: (state, deleted) => {
console.log('SET_DELETED');
//console.log('SET_DELETED');
if (!state.allIds.includes(deleted['@id'])) {
return;
}

@ -123,7 +123,6 @@ export default {
const currentUser = computed(() => store.getters['security/getUser']);
const { t, locale } = useI18n();
let currentEvent = null;
const sessionState = reactive({

@ -45,15 +45,6 @@ services:
# fetching services directly from the container via $container->get() won't work.
# The best practice is to be explicit about your dependencies anyway.
# App\ApiPlatform\AutoGroupResourceMetadataFactory:
# # causes this to decorate around the cached factory so that
# # our service is never cached (which, of course, can have performance
# # implications!
# decoration_priority: -20
# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name
Vich\UploaderBundle\Naming\SubdirDirectoryNamer:
public: true

Loading…
Cancel
Save