-
diff --git a/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.sass b/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.sass
index 3cd89190..3e666b07 100644
--- a/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.sass
+++ b/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.sass
@@ -29,3 +29,6 @@ nz-content
.wrong-answer
color: #ff194f
+
+.available-soon
+ margin-left: 10px
diff --git a/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.ts b/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.ts
index 08c7e1c2..fe9ccd24 100644
--- a/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.ts
+++ b/src/app/dialogs/new-poll-item-dialog/new-poll-item-dialog.component.ts
@@ -21,27 +21,32 @@ const ITEM_TYPES = [
{
id: 1,
name: 'Open Text Question',
- description: 'Enables the user to fill in a text as answer'
+ description: 'Enables the user to fill in a text as answer.',
+ available: true
},
{
id: 2,
name: 'Multiple Choice Question',
- description: 'Lets the user choose between several, pre-defined answers'
+ description: 'Lets the user choose between several, pre-defined answers.',
+ available: true
},
{
id: 3,
name: 'Quiz Question',
- description: 'Multiple choice question, which displays the right answer afterwards'
+ description: 'Multiple choice question which displays the right answer afterwards.',
+ available: true
},
{
id: 4,
name: 'Word Cloud Question',
- description: 'Single word can be entered. The words will be arranged in form of clouds'
+ description: 'Single word can be entered. The words will be arranged in form of clouds.',
+ available: false
},
{
id: 5,
name: 'Rating Question',
- description: 'Star rating.'
+ description: 'Star rating.',
+ available: false
}
];
diff --git a/src/app/model/quiz-item-answer.ts b/src/app/model/quiz-item-answer.ts
index b99f3145..0c470e6b 100644
--- a/src/app/model/quiz-item-answer.ts
+++ b/src/app/model/quiz-item-answer.ts
@@ -9,6 +9,4 @@
export class QuizItemAnswer {
id: number;
selectionOption: string;
- isCorrect: boolean;
- answerCount: number;
}
diff --git a/src/app/pages/poll-participants/poll-participants.component.html b/src/app/pages/poll-participants/poll-participants.component.html
index 979d9034..8059d463 100644
--- a/src/app/pages/poll-participants/poll-participants.component.html
+++ b/src/app/pages/poll-participants/poll-participants.component.html
@@ -16,7 +16,7 @@