style: lint en format
This commit is contained in:
		
							parent
							
								
									4bc9d29de7
								
							
						
					
					
						commit
						3e4df05710
					
				
					 2 changed files with 32 additions and 22 deletions
				
			
		|  | @ -153,7 +153,7 @@ import { useDisplay } from "vuetify"; | ||||||
|         xl: 1600, |         xl: 1600, | ||||||
|     }; |     }; | ||||||
| 
 | 
 | ||||||
|     // logic for small screens |     // Logic for small screens | ||||||
|     const display = useDisplay(); |     const display = useDisplay(); | ||||||
| 
 | 
 | ||||||
|     // Reactive variables to hold custom logic based on breakpoints |     // Reactive variables to hold custom logic based on breakpoints | ||||||
|  | @ -269,10 +269,21 @@ import { useDisplay } from "vuetify"; | ||||||
|                                                         </v-btn> |                                                         </v-btn> | ||||||
|                                                     </span> |                                                     </span> | ||||||
|                                                     <span v-else> |                                                     <span v-else> | ||||||
|                                                         <v-btn @click="handleJoinRequest(jr, true)" icon="mdi-check-circle" class="mr-2" color="green" variant="text"></v-btn> |                                                         <v-btn | ||||||
|                                                         <v-btn @click="handleJoinRequest(jr, false)" icon="mdi-close-circle" class="mr-2" color="red" variant="text"></v-btn> |                                                             @click="handleJoinRequest(jr, true)" | ||||||
|  |                                                             icon="mdi-check-circle" | ||||||
|  |                                                             class="mr-2" | ||||||
|  |                                                             color="green" | ||||||
|  |                                                             variant="text" | ||||||
|  |                                                         ></v-btn> | ||||||
|  |                                                         <v-btn | ||||||
|  |                                                             @click="handleJoinRequest(jr, false)" | ||||||
|  |                                                             icon="mdi-close-circle" | ||||||
|  |                                                             class="mr-2" | ||||||
|  |                                                             color="red" | ||||||
|  |                                                             variant="text" | ||||||
|  |                                                         ></v-btn> | ||||||
|                                                     </span> |                                                     </span> | ||||||
|                                                      |  | ||||||
|                                                 </td> |                                                 </td> | ||||||
|                                             </tr> |                                             </tr> | ||||||
|                                         </tbody> |                                         </tbody> | ||||||
|  |  | ||||||
|  | @ -15,7 +15,6 @@ | ||||||
|         useTeacherInvitationsReceivedQuery, |         useTeacherInvitationsReceivedQuery, | ||||||
|     } from "@/queries/teacher-invitations"; |     } from "@/queries/teacher-invitations"; | ||||||
|     import { useDisplay } from "vuetify"; |     import { useDisplay } from "vuetify"; | ||||||
|     import { createVuetify } from "vuetify"; |  | ||||||
| 
 | 
 | ||||||
|     const { t } = useI18n(); |     const { t } = useI18n(); | ||||||
| 
 | 
 | ||||||
|  | @ -147,7 +146,7 @@ | ||||||
|         xl: 1600, |         xl: 1600, | ||||||
|     }; |     }; | ||||||
| 
 | 
 | ||||||
|     // logic for small screens |     // Logic for small screens | ||||||
|     const display = useDisplay(); |     const display = useDisplay(); | ||||||
| 
 | 
 | ||||||
|     // Reactive variables to hold custom logic based on breakpoints |     // Reactive variables to hold custom logic based on breakpoints | ||||||
|  | @ -163,7 +162,7 @@ | ||||||
|     // Code display dialog logic |     // Code display dialog logic | ||||||
|     const viewCodeDialog = ref(false); |     const viewCodeDialog = ref(false); | ||||||
|     const selectedCode = ref(""); |     const selectedCode = ref(""); | ||||||
|     function openCodeDialog(codeToView: string) { |     function openCodeDialog(codeToView: string): void { | ||||||
|         selectedCode.value = codeToView; |         selectedCode.value = codeToView; | ||||||
|         viewCodeDialog.value = true; |         viewCodeDialog.value = true; | ||||||
|     } |     } | ||||||
|  |  | ||||||
		Reference in a new issue
	
	 laurejablonski
						laurejablonski