chore: change comment box placeholder (#5042)
This commit is contained in:
parent
5918607171
commit
2b570da890
1 changed files with 3 additions and 1 deletions
|
|
@ -39,6 +39,7 @@ export const LiteTextEditor = React.forwardRef<EditorRefApi, LiteTextEditorWrapp
|
|||
showAccessSpecifier = false,
|
||||
showSubmitButton = true,
|
||||
isSubmitting = false,
|
||||
placeholder = "Add comment...",
|
||||
...rest
|
||||
} = props;
|
||||
// store hooks
|
||||
|
|
@ -81,8 +82,9 @@ export const LiteTextEditor = React.forwardRef<EditorRefApi, LiteTextEditorWrapp
|
|||
highlights: mentionHighlights,
|
||||
suggestions: mentionSuggestions,
|
||||
}}
|
||||
{...rest}
|
||||
placeholder={placeholder}
|
||||
containerClassName={cn(containerClassName, "relative")}
|
||||
{...rest}
|
||||
/>
|
||||
<IssueCommentToolbar
|
||||
accessSpecifier={accessSpecifier}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue