Skip to content

Commit

Permalink
fix: changed card title (#4794)
Browse files Browse the repository at this point in the history
* changed biobank card title from `Organizations` to `Organisations`
  • Loading branch information
davidruvolo51 authored Mar 4, 2025
1 parent 1aa2cb3 commit 501e5b5
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
></ServiceSection>

<OrganizationSection
v-else-if="tabs['Organization'].active"
v-else-if="tabs['Organisation'].active"
class="px-3 py-1"
:biobank="biobank"
/>
Expand Down Expand Up @@ -71,7 +71,7 @@ const props = withDefaults(
}
);
type IBiobankCardTab = "Collections" | "Services" | "Organization";
type IBiobankCardTab = "Collections" | "Services" | "Organisation";
const showCollections = ref(false);
const activeTab = ref<IBiobankCardTab>("Collections");
const tabs = computed(() => {
Expand All @@ -88,10 +88,10 @@ const tabs = computed(() => {
active: activeTab.value === "Services",
disabled: props.biobank?.services?.length === 0,
},
Organization: {
id: "Organization",
label: "Organization",
active: activeTab.value === "Organization",
Organisation: {
id: "Organisation",
label: "Organisation",
active: activeTab.value === "Organisation",
disabled: false,
},
};
Expand Down

0 comments on commit 501e5b5

Please sign in to comment.