Merge pull request #645 from a--hoang/master

Fix spelling: permanant->permanent
This commit is contained in:
Tom Moor
2018-05-08 10:22:08 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class CollectionDelete extends Component {
<form onSubmit={this.handleSubmit}> <form onSubmit={this.handleSubmit}>
<HelpText> <HelpText>
Are you sure? Deleting the <strong>{collection.name}</strong>{' '} Are you sure? Deleting the <strong>{collection.name}</strong>{' '}
collection is permanant and will also delete all of the documents collection is permanent and will also delete all of the documents
within it, so be careful with that. within it, so be careful with that.
</HelpText> </HelpText>
<Button type="submit" danger> <Button type="submit" danger>

View File

@ -43,7 +43,7 @@ class DocumentDelete extends Component {
<form onSubmit={this.handleSubmit}> <form onSubmit={this.handleSubmit}>
<HelpText> <HelpText>
Are you sure? Deleting the <strong>{document.title}</strong>{' '} Are you sure? Deleting the <strong>{document.title}</strong>{' '}
document is permanant and will also delete all of its history. document is permanent and will also delete all of its history.
</HelpText> </HelpText>
<Button type="submit" danger> <Button type="submit" danger>
{this.isDeleting ? 'Deleting…' : 'Delete'} {this.isDeleting ? 'Deleting…' : 'Delete'}