Skip to content

Commit

Permalink
Merge pull request #720 from Klantinteractie-Servicesysteem/feature/b…
Browse files Browse the repository at this point in the history
…evindingen-vragensets

Feature/bevindingen vragensets
  • Loading branch information
mstokericatt authored Sep 21, 2023
2 parents 40b1c12 + f1ef522 commit 2f196b9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/views/Beheer/BeheerLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>Gespreksresultaten</router-link
>
<router-link to="/Beheer/Contactverzoekformulieren"
>Contactverzoek formulieren</router-link
>Formulieren contactverzoek</router-link
>
</nav>
<main>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
cancel-message="Nee"
confirm-message="Ja"
/>

<utrecht-heading :level="1">{{
props.id ? "Formulier bewerken" : "Formulier aanmaken"
}}</utrecht-heading>
Expand All @@ -27,7 +26,7 @@
</div>
<form class="container" @submit.prevent="submit">
<label class="utrecht-form-label" for="titel"
><span>Titel *</span>
><span class="required">Titel </span>
<input
class="utrecht-textbox utrecht-textbox--html-input"
required
Expand All @@ -38,7 +37,7 @@
</label>
<!-- dropdown for afdelingen -->
<label class="utrecht-form-label">
<span>Afdeling *</span>
<span class="required">Afdeling </span>
<select
class="utrecht-select utrecht-select--html-select"
v-model="selectedAfdeling"
Expand Down Expand Up @@ -106,7 +105,7 @@
<!-- Conditional part for Dropdown -->
<div v-if="isDropdownVraag(vraag)">
<label>
<span>Antwoorden opties:</span>
<span>Antwoordopties:</span>
</label>
<template
v-for="(option, optionIndex) in vraag.options"
Expand Down Expand Up @@ -159,7 +158,7 @@
<!-- Conditional part for checkbox -->
<div v-if="isCheckboxVraag(vraag)">
<label>
<span>Answer Options:</span>
<span>Antwoordopties:</span>
</label>
<template
v-for="(option, optionIndex) in vraag.options"
Expand Down Expand Up @@ -654,6 +653,6 @@ menu {
}
pre {
white-space: pre-line
white-space: pre-line;
}
</style>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="header-wrapper">
<UtrechtHeading :level="1">Contactverzoek formulieren</UtrechtHeading>
<UtrechtHeading :level="1">Formulieren contactverzoek</UtrechtHeading>
<router-link to="/Beheer/Contactverzoekformulier/"> Toevoegen </router-link>
</div>
<div v-if="loading"><SimpleSpinner /></div>
Expand All @@ -10,7 +10,7 @@
<tr>
<th>Titel</th>
<th>Afdeling</th>
<th>edit/delete</th>
<th></th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit 2f196b9

Please sign in to comment.