mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 22:01:13 +00:00
Fix suggested title " " spaces (#2037)
* Fix imported title   spaces * Update src/shared/components/post/post-form.tsx Co-authored-by: SleeplessOne1917 <abias1122@gmail.com> * Fix lint issue --------- Co-authored-by: SleeplessOne1917 <abias1122@gmail.com>
This commit is contained in:
parent
d923cfa522
commit
76a656bc5b
1 changed files with 4 additions and 2 deletions
|
@ -582,8 +582,10 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||
case "loading":
|
||||
return <Spinner />;
|
||||
case "success": {
|
||||
const suggestedTitle = this.state.metadataRes.data.metadata.title;
|
||||
|
||||
// Clean up the title of any extra whitespace and replace with a space
|
||||
const suggestedTitle = this.state.metadataRes.data.metadata.title
|
||||
?.trim()
|
||||
.replace(/\s+/g, " ");
|
||||
return (
|
||||
suggestedTitle && (
|
||||
<button
|
||||
|
|
Loading…
Reference in a new issue