diff options
| author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-09 19:22:39 +0100 | 
|---|---|---|
| committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-09 19:22:39 +0100 | 
| commit | 7fe1f42d56edb98875399b1da5e9b7e972209a0d (patch) | |
| tree | 6f96696b583e4fab1a2d1f54a2f99bcee3267c04 /views/partials/editeventmodal.handlebars | |
| parent | dbbb94117c2d6266cfc45a091b4b87012024f788 (diff) | |
Add known group linker to event form
Diffstat (limited to 'views/partials/editeventmodal.handlebars')
| -rw-r--r-- | views/partials/editeventmodal.handlebars | 12 | 
1 files changed, 10 insertions, 2 deletions
diff --git a/views/partials/editeventmodal.handlebars b/views/partials/editeventmodal.handlebars index a36cd98..a9fe626 100644 --- a/views/partials/editeventmodal.handlebars +++ b/views/partials/editeventmodal.handlebars @@ -8,8 +8,15 @@          </button>        </div>        <div class="modal-body"> -        <form id="editEventForm" enctype="multipart/form-data" x-data="editEventForm()" x-init="init()" -          @submit.prevent="submitForm"> +        <form +          id="editEventForm" +          enctype="multipart/form-data" +          x-data="editEventForm()" +          x-init="init()" +          @submit.prevent="submitForm" +          @event-group-id-changed="data.eventGroupID = $event.detail" +          @event-group-edit-token-changed="data.eventGroupEditToken = $event.detail" +        >              {{> eventForm }} @@ -47,3 +54,4 @@  <script type="text/javascript" src="/js/generate-timezones.js"></script>  <script type="text/javascript" src="/js/modules/event-edit.js"></script> +<script src="/js/modules/group-linker.js"></script>  | 
