-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/release_24.2' into merge_24.2
- Loading branch information
Showing
16 changed files
with
390 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
client/src/components/Collections/common/CollectionCreatorFooterButtons.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script setup lang="ts"> | ||
import localize from "@/utils/localization"; | ||
interface Props { | ||
validInput: boolean; | ||
shortWhatIsBeingCreated: string; | ||
} | ||
defineProps<Props>(); | ||
const emit = defineEmits<{ | ||
(e: "clicked-create"): void; | ||
(e: "clicked-cancel"): void; | ||
}>(); | ||
</script> | ||
|
||
<template> | ||
<div class="actions vertically-spaced d-flex justify-content-between"> | ||
<BButton tabindex="-1" @click="emit('clicked-cancel')"> | ||
{{ localize("Cancel") }} | ||
</BButton> | ||
|
||
<BButton class="create-collection" variant="primary" :disabled="!validInput" @click="emit('clicked-create')"> | ||
{{ localize("Create " + shortWhatIsBeingCreated) }} | ||
</BButton> | ||
</div> | ||
</template> |
Oops, something went wrong.