Skip to content
Snippets Groups Projects
Commit e2c9c0fe authored by Julian's avatar Julian
Browse files

Fix modal action components

parent 07f91fad
No related branches found
No related tags found
1 merge request!363Resolve "Add absence overview page"
Pipeline #191642 failed
...@@ -14,18 +14,20 @@ ...@@ -14,18 +14,20 @@
</template> </template>
<!-- dialog view -> deactivate dialog --> <!-- dialog view -> deactivate dialog -->
<!-- cancel | save (through lesson-summary) --> <!-- cancel | save (through lesson-summary) -->
<documentation-absences v-bind="$attrs" @close="popup = false" /> <documentation v-bind="$attrs" @close="popup = false" />
</mobile-fullscreen-dialog> </mobile-fullscreen-dialog>
</template> </template>
<script> <script>
import MobileFullscreenDialog from "aleksis.core/components/generic/dialogs/MobileFullscreenDialog.vue"; import MobileFullscreenDialog from "aleksis.core/components/generic/dialogs/MobileFullscreenDialog.vue";
import DocumentationAbsences from "./DocumentationAbsences.vue"; import DocumentationAbsences from "./DocumentationAbsences.vue";
import Documentation from "../documentation/Documentation.vue";
export default { export default {
name: "DocumentationAbsencesModal", name: "DocumentationAbsencesModal",
components: { components: {
MobileFullscreenDialog, MobileFullscreenDialog,
Documentation,
DocumentationAbsences, DocumentationAbsences,
}, },
data() { data() {
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
</template> </template>
<!-- dialog view -> deactivate dialog --> <!-- dialog view -> deactivate dialog -->
<!-- cancel | save (through lesson-summary) --> <!-- cancel | save (through lesson-summary) -->
<documentation v-bind="$attrs" @close="popup = false" /> <documentation v-bind="$attrs" :extra-marks="extraMarks" @close="popup = false" />
</mobile-fullscreen-dialog> </mobile-fullscreen-dialog>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment