File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ export default function NewComment({ updateId }: { updateId: string }) {
77
77
placeholder = "Give suggestions or ask questions related to the update."
78
78
hasError = { Boolean ( errors . description ) }
79
79
errorMessage = "Comment is required!!!"
80
+ helpText = "Basic markdown is supported."
80
81
onKeyDown = { ( e ) => {
81
82
if ( e . code === 'Enter' && ( e . metaKey || e . ctrlKey ) ) {
82
83
handleSubmit ( onSubmit ) ( )
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ export default function NewUpdate({
90
90
placeholder = "What did you do today to move towards your goal?"
91
91
hasError = { Boolean ( errors . description ) }
92
92
errorMessage = "Update is required!!!"
93
+ helpText = "Basic markdown is supported."
93
94
onKeyDown = { ( e ) => {
94
95
if ( e . code === 'Enter' && ( e . metaKey || e . ctrlKey ) ) {
95
96
handleSubmit ( onSubmit ) ( )
You can’t perform that action at this time.
0 commit comments