Skip to content

Commit

Permalink
[24.2] Fix minor typo in event name in collection creator
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Jan 31, 2025
1 parent 5568073 commit 2e94ade
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import { BAlert, BLink } from "bootstrap-vue";
import localize from "@/utils/localization";
const emit = defineEmits<{
(e: "clicked-upload"): void;
(e: "click-upload"): void;
}>();
</script>
<template>
<BAlert variant="info" show>
{{ localize("No items available to create a collection.") }}
{{ localize("Exit and change your current history, or") }}
<BLink class="text-decoration-none" @click.stop.prevent="emit('clicked-upload')">
<BLink class="text-decoration-none" @click.stop.prevent="emit('click-upload')">
{{ localize("Upload some datasets.") }}
</BLink>
</BAlert>
Expand Down

0 comments on commit 2e94ade

Please sign in to comment.