Skip to content

Commit a8bad36

Browse files
committed
default feedback input to nothing, so that its falsy
1 parent 72ff706 commit a8bad36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/assets/v2/js/pages/quests.helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ $(document).ready(function() {
205205

206206
$('.give_feedback').on('click', async function(e) {
207207
e.preventDefault();
208-
var feedback = prompt('Any comments for the quest author? (optional)', 'Feedback: ');
208+
var feedback = prompt('Any comments for the quest author? (optional)', '');
209209
var polarity = $(this).data('direction');
210210

211211
var params = {

0 commit comments

Comments
 (0)