Skip to content

Commit

Permalink
Adding tooltip to collection name dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
CarliPinell committed Oct 24, 2024
1 parent e96ce66 commit dc2f509
Showing 1 changed file with 12 additions and 7 deletions.
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

0 comments on commit dc2f509

Please sign in to comment.