Skip to content

Commit 0072f8c

Browse files
Merge pull request #5738 from Countly/SER-1508
[fix][SER1-508] "Internal name" field is not mandatory when creating a rating
2 parents d18f458 + 4633a4d commit 0072f8c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 24.05.XX
2+
Enterprise fixes:
3+
- [nps] Fixed bug in the editor where the "internal name" field was not mandatory
4+
15
## Version 24.05.16
26
Fixes:
37
- [core] Replaced "Users" with "Sessions" label on technology home widgets

plugins/star-rating/frontend/public/templates/drawer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<div class="text-smallish color-cool-gray-50 bu-mb-1" data-test-id="ratings-drawer-settings-widget-name-desc">
104104
{{i18n('feedback.internalName.description')}}
105105
</div>
106-
<validation-provider name="internalName" v-slot="v">
106+
<validation-provider name="internalName" v-slot="v" rules="required">
107107
<el-input
108108
:class="{'is-error': v.errors.length > 0}"
109109
v-model="drawerScope.editedObject.internalName"

0 commit comments

Comments
 (0)