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, | ||||
|     }; | ||||
| 
 | ||||
|     // logic for small screens | ||||
|     // Logic for small screens | ||||
|     const display = useDisplay(); | ||||
| 
 | ||||
|     // Reactive variables to hold custom logic based on breakpoints | ||||
|  | @ -269,10 +269,21 @@ import { useDisplay } from "vuetify"; | |||
|                                                         </v-btn> | ||||
|                                                     </span> | ||||
|                                                     <span v-else> | ||||
|                                                         <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> | ||||
|                                                         <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> | ||||
|                                                      | ||||
|                                                 </td> | ||||
|                                             </tr> | ||||
|                                         </tbody> | ||||
|  |  | |||
|  | @ -15,7 +15,6 @@ | |||
|         useTeacherInvitationsReceivedQuery, | ||||
|     } from "@/queries/teacher-invitations"; | ||||
|     import { useDisplay } from "vuetify"; | ||||
|     import { createVuetify } from "vuetify"; | ||||
| 
 | ||||
|     const { t } = useI18n(); | ||||
| 
 | ||||
|  | @ -147,7 +146,7 @@ | |||
|         xl: 1600, | ||||
|     }; | ||||
| 
 | ||||
|     // logic for small screens | ||||
|     // Logic for small screens | ||||
|     const display = useDisplay(); | ||||
| 
 | ||||
|     // Reactive variables to hold custom logic based on breakpoints | ||||
|  | @ -163,7 +162,7 @@ | |||
|     // Code display dialog logic | ||||
|     const viewCodeDialog = ref(false); | ||||
|     const selectedCode = ref(""); | ||||
|     function openCodeDialog(codeToView: string) { | ||||
|     function openCodeDialog(codeToView: string): void { | ||||
|         selectedCode.value = codeToView; | ||||
|         viewCodeDialog.value = true; | ||||
|     } | ||||
|  |  | |||
		Reference in a new issue
	
	 laurejablonski
						laurejablonski