Skip to content

Commit

Permalink
Merge ModerateEvent.vue, containers.scss, and youtube.blade.php from …
Browse files Browse the repository at this point in the history
…dev branch
  • Loading branch information
bernardhanna committed Aug 29, 2024
1 parent 503b74b commit ff13f9d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion resources/assets/sass/components/containers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
height: 100%;
background: black;
color: white;
display: none;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
Expand Down
21 changes: 8 additions & 13 deletions resources/js/components/ModerateEvent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,27 +75,22 @@ export default {
name: "moderate-activity",
data() {
return {
status: this.event.status,
showModal: false,
showDeleteModal: false,
rejectionText: '',
rejectionOption: null,
rejectionOptions: [
{
'title': this.$t('moderation.description.title'),
'text': this.$t('moderation.description.text')
'title': "Missing proper descriptions",
'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!"
},
{
'title': this.$t('moderation.missing-details.title'),
'text': this.$t('moderation.missing-details.text')
'title': "Missing important details",
'text': "Provide more details on the activity objectives and goals and how it makes use of technology, coding and critical thinking. Thanks!"
},
{
'title': this.$t('moderation.duplicate.title'),
'text': this.$t('moderation.duplicate.text')
'title': "Duplicate",
'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!"
},
{
'title': this.$t('moderation.not-related.title'),
'text': this.$t('moderation.not-related.text')
'title': "Not programming related",
'text': "Provide more information on the activity objectives and goals and how it makes use of technology, coding and critical thinking. Thanks!"
}
]
};
Expand Down

0 comments on commit ff13f9d

Please sign in to comment.