Skip to content

Commit

Permalink
Merge pull request #19499 from ahmedhamidawan/rename_no_collection_it…
Browse files Browse the repository at this point in the history
…ems_message_emit
  • Loading branch information
mvdbeek authored Jan 31, 2025
2 parents 5568073 + 2e94ade commit 740f15d
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 740f15d

Please sign in to comment.