fix linting

This commit is contained in:
2025-06-07 17:19:01 -06:00
parent 987f9217de
commit 9760f02aab
10 changed files with 87 additions and 62 deletions

View File

@@ -93,7 +93,8 @@
v-if="
!isLoading &&
isInEditOrCreateMode() &&
newOrUpdatedMeetingInputs != null /* duplicate check is for typechecks */
newOrUpdatedMeetingInputs !=
null /* duplicate check is for typechecks */
"
class="mt-8"
>
@@ -169,7 +170,9 @@
</div>
<div>
<label for="projectLink" class="block text-sm font-medium text-gray-700"
<label
for="projectLink"
class="block text-sm font-medium text-gray-700"
>Project Link</label
>
<input
@@ -217,8 +220,8 @@
</div>
<div
class="flex items-center gap-2 cursor-pointer text-blue-600"
@click="copyMembersLinkToClipboard"
title="Click to copy link for members"
@click="copyMembersLinkToClipboard"
>
<span>
&bull; Page for Members
@@ -344,7 +347,9 @@ export default class OnboardMeetingView extends Vue {
}
isInCreateMode(): boolean {
return this.newOrUpdatedMeetingInputs != null && this.currentMeeting == null;
return (
this.newOrUpdatedMeetingInputs != null && this.currentMeeting == null
);
}
isInEditOrCreateMode(): boolean {