Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix/FOUR-19681: Add a message to indicates user that Collections won´t be available for Anonymous Web Entry #1756

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions src/components/inspector/collection-records-list.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
<template>
<div>
<div>
<label for="collection">{{ $t("Collection") }}</label>
<b-form-select
id="collection"
v-model="collectionId"
:options="collections"
data-cy="inspector-collection"
/>
<label for="collection">{{ $t("Collection Name") }}</label>
<b-form-group>
<b-form-select
id="collection"
v-model="collectionId"
:options="collections"
data-cy="inspector-collection"
/>
<b-form-text class="mt-2">
{{ $t("Collection Record Control is not available for Anonymous Web Entry") }}
</b-form-text>
</b-form-group>
</div>
<div v-if="collectionId > 0" class="screen-link mt-2">
<a
Expand Down
Loading