Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
INJECT
frontend
Commits
b7b1ace1
There was an error fetching the commit references. Please try again later.
Commit
b7b1ace1
authored
10 months ago
by
Marek Veselý
Browse files
Options
Downloads
Patches
Plain Diff
docs: document the discard draft function properly
parent
c74fd821
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/email/EmailForm/useFormState.ts
+6
-0
6 additions, 0 deletions
frontend/src/email/EmailForm/useFormState.ts
with
6 additions
and
0 deletions
frontend/src/email/EmailForm/useFormState.ts
+
6
−
0
View file @
b7b1ace1
...
...
@@ -184,6 +184,11 @@ const useFormState = ({
})
}
/**
* Resets the form state to the initial state. If the form was loaded from
* a draft, the draft will be discarded
* (currently, that means updating its values to the initial values).
*/
const
discardDraft
=
(
notifyOnSuccess
:
boolean
)
=>
{
setSenderAddress
(
teamAddress
||
''
)
setContent
(
''
)
...
...
@@ -195,6 +200,7 @@ const useFormState = ({
setTemplate
(
undefined
)
if
(
!
loadDraft
)
{
notify
(
'
Draft discarded
'
)
return
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment