Skip to content

Commit

Permalink
Merge pull request #1756 from ProcessMaker/bugfix/FOUR-19681
Browse files Browse the repository at this point in the history
bugfix/FOUR-19681: Add a message to indicates user that Collections won´t be available for Anonymous Web Entry
  • Loading branch information
ryancooley authored Nov 5, 2024
2 parents 2048c2f + 4d344c0 commit b6540f7
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 b6540f7

Please sign in to comment.