Skip to content

Commit

Permalink
hotfix: linting and type check
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownSean8 committed Dec 20, 2024
1 parent 875f858 commit 11cbd5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/components/btn/BtnShareIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
@popup-open="nativeBehaviorOptions.onOpen"
@popup-block="nativeBehaviorOptions.onBlock"
@popup-focus="nativeBehaviorOptions.onFocus"
:is="vueSocials[socialComponent]"
class="focus-brand"
v-bind:is="vueSocials[socialComponent]"
:window-features="windowFeatures"
:share-options="shareOptions"
:use-native-behavior="useNativeBehavior"
Expand All @@ -24,6 +24,7 @@
@click="copyToClipboardThenOpenUrl(name, urlLink, redirectLink)"
@keypress.space="copyToClipboardThenOpenUrl(name, urlLink, redirectLink)"
@keypress.enter="copyToClipboardThenOpenUrl(name, urlLink, redirectLink)"
:is="vueSocials[socialComponent]"
class="focus-brand"
tabindex="0"
role="button"
Expand Down
5 changes: 4 additions & 1 deletion frontend/pages/organizations/[id]/events.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
/>
</div>
</HeaderAppPage>
<div v-if="organization.events?.length > 0" class="space-y-3 py-4">
<div
v-if="organization.events && organization.events.length > 0"
class="space-y-3 py-4"
>
<CardSearchResultEvent
v-for="(e, i) in organization.events"
:key="i"
Expand Down
1 change: 1 addition & 0 deletions frontend/types/entities/organization.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Location } from "~/types/content/location";
import type { Event } from "~/types/events/event";

// MARK: Main Table

Expand Down

0 comments on commit 11cbd5d

Please sign in to comment.