style: lint en format
This commit is contained in:
parent
4bc9d29de7
commit
3e4df05710
2 changed files with 32 additions and 22 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue