mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Export: fix loading of form for "filter action by type, goal and result"
This commit is contained in:
parent
eaa40d6725
commit
d8fa743bc9
5
.changes/unreleased/Fixed-20231116-105642.yaml
Normal file
5
.changes/unreleased/Fixed-20231116-105642.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
kind: Fixed
|
||||
body: 'Export: fix loading of form for "filter action by type, goal and result"'
|
||||
time: 2023-11-16T10:56:42.771516508+01:00
|
||||
custom:
|
||||
Issue: "208"
|
@ -28,9 +28,7 @@
|
||||
{% block js %}
|
||||
{{ encore_entry_script_tags('mod_pickentity_type') }}
|
||||
{{ encore_entry_script_tags('page_export') }}
|
||||
{% if export_alias == 'count_social_work_actions' %}
|
||||
{{ encore_entry_script_tags('vue_export_action_goal_result') }}
|
||||
{% endif %}
|
||||
{{ encore_entry_script_tags('mod_pick_rolling_date') }}
|
||||
{% endblock js %}
|
||||
|
||||
|
@ -2,6 +2,7 @@ import { createApp } from "vue";
|
||||
import { _createI18n } from 'ChillMainAssets/vuejs/_js/i18n';
|
||||
import App from './App.vue';
|
||||
|
||||
if (null !== document.getElementById('export_filters_social_work_type_filter_enabled')) {
|
||||
const i18n = _createI18n({});
|
||||
|
||||
const app = createApp({
|
||||
@ -9,5 +10,5 @@ const app = createApp({
|
||||
})
|
||||
.use(i18n)
|
||||
.component('app', App)
|
||||
.mount('#export_export')
|
||||
;
|
||||
.mount('#export_export');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user