forked from trent_larson/crowd-funder-for-time-pwa
fix linting
This commit is contained in:
@@ -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>
|
||||
• 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 {
|
||||
|
||||
Reference in New Issue
Block a user