Skip to content
Snippets Groups Projects
Commit b7b1ace1 authored by Marek Veselý's avatar Marek Veselý
Browse files

docs: document the discard draft function properly

parent c74fd821
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment