Currently there are 3 question types that have a NcNoteCard that is shown if the question has an error (grid, multiple, file).
For better maintainability the NcNoteCard should be moved to Question.vue.
File:
|
<NcNoteCard v-if="hasError" :id="errorId" type="error"> |
|
{{ errorMessage }} |
|
</NcNoteCard> |
Grid:
|
<NcNoteCard v-if="hasError" :id="errorId" type="error"> |
|
{{ errorMessage }} |
|
</NcNoteCard> |
Multiple:
|
<NcNoteCard v-if="hasError" :id="errorId" type="error"> |
|
{{ errorMessage }} |
|
</NcNoteCard> |
Currently there are 3 question types that have a NcNoteCard that is shown if the question has an error (grid, multiple, file).
For better maintainability the NcNoteCard should be moved to Question.vue.
File:
forms/src/components/Questions/QuestionFile.vue
Lines 81 to 83 in a6b818f
Grid:
forms/src/components/Questions/QuestionGrid.vue
Lines 19 to 21 in a6b818f
Multiple:
forms/src/components/Questions/QuestionMultiple.vue
Lines 75 to 77 in a6b818f