diff --git a/src/pages/overall/overall.vue b/src/pages/overall/overall.vue index 774b5e1..1097039 100644 --- a/src/pages/overall/overall.vue +++ b/src/pages/overall/overall.vue @@ -36,13 +36,13 @@ :key="course.id"> - You have too many new grade notifications. Clear them now? - Nah - Sure! + Nah + Sure! @@ -63,8 +63,6 @@ { @Prop({required: true}) courses: Course[]; - promptClearNotification = false; - /** * This function is called to get gpa since I can't import another * class in the Vue file. @@ -76,6 +74,8 @@ // For clear unread prompt unread: Assignment[]; + clearUnreadPrompt = false; + /** * On page load - check if the user has too many notifications */ @@ -90,7 +90,7 @@ // Prompt clear if (this.unread.length > 15) { - this.promptClearNotification = true; + this.clearUnreadPrompt = true; } } }