Skip to content

Commit ff13f9d

Browse files
committed
Merge ModerateEvent.vue, containers.scss, and youtube.blade.php from dev branch
1 parent 503b74b commit ff13f9d

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

resources/assets/sass/components/containers.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
height: 100%;
238238
background: black;
239239
color: white;
240-
display: none;
240+
display: flex;
241241
align-items: center;
242242
justify-content: center;
243243
text-align: center;

resources/js/components/ModerateEvent.vue

+8-13
Original file line numberDiff line numberDiff line change
@@ -75,27 +75,22 @@ export default {
7575
name: "moderate-activity",
7676
data() {
7777
return {
78-
status: this.event.status,
79-
showModal: false,
80-
showDeleteModal: false,
81-
rejectionText: '',
82-
rejectionOption: null,
8378
rejectionOptions: [
8479
{
85-
'title': this.$t('moderation.description.title'),
86-
'text': this.$t('moderation.description.text')
80+
'title': "Missing proper descriptions",
81+
'text': "Please improve the description and describe in more detail what you will do and how your activity relates to coding and computational thinking. Thanks!"
8782
},
8883
{
89-
'title': this.$t('moderation.missing-details.title'),
90-
'text': this.$t('moderation.missing-details.text')
84+
'title': "Missing important details",
85+
'text': "Provide more details on the activity objectives and goals and how it makes use of technology, coding and critical thinking. Thanks!"
9186
},
9287
{
93-
'title': this.$t('moderation.duplicate.title'),
94-
'text': this.$t('moderation.duplicate.text')
88+
'title': "Duplicate",
89+
'text': "This seems to be a duplication of another activity taking place at the same time. If it is not please change the description and change the title so that it is clear that the activities are separate. Thanks!"
9590
},
9691
{
97-
'title': this.$t('moderation.not-related.title'),
98-
'text': this.$t('moderation.not-related.text')
92+
'title': "Not programming related",
93+
'text': "Provide more information on the activity objectives and goals and how it makes use of technology, coding and critical thinking. Thanks!"
9994
}
10095
]
10196
};

0 commit comments

Comments
 (0)