Hello,
I'm attempting to create a survey using custom actions. Below is an example of my action. Everything works correctly, however, is it possible to make only the first letter in the action parameters capitalized? Also, would it be possible to make it so the title of the action isn't also the submit button name? I'm on the version of metabase 0.47.2.

INSERT INTO surveyanswers
(
QuestionID,
Event_Date_ID,
AnswerText,
Timesubmitted
)
VALUES
(
1,
84,
{{did_you_enjoy_this_event}},
now()),
(
1,
84,
{{The_facilitators_differentiated_the_activities_in_our_sessions_to_meet_my_needs}},
now());