You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by am...@apache.org on 2022/08/22 19:22:44 UTC

[couchdb-fauxton] branch main updated: fix typo in create database panel (#1364)

This is an automated email from the ASF dual-hosted git repository.

amaranhao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git


The following commit(s) were added to refs/heads/main by this push:
     new 4104f513 fix typo in create database panel (#1364)
4104f513 is described below

commit 4104f51388172a662b0409bc3ea1206fc89e7d00
Author: Margaret Harrigan <39...@users.noreply.github.com>
AuthorDate: Mon Aug 22 15:22:38 2022 -0400

    fix typo in create database panel (#1364)
    
    Co-authored-by: Margaret Harrigan <m....@ibm.com>
---
 app/addons/databases/components.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/addons/databases/components.js b/app/addons/databases/components.js
index 2be8bc5a..109e4a98 100644
--- a/app/addons/databases/components.js
+++ b/app/addons/databases/components.js
@@ -374,7 +374,7 @@ class AddDatabaseWidget extends React.Component {
     }
     const partitionedDbHelp = this.props.partitionedDbHelpText ? (
       <Accordion className='partitioned-db-help'>
-        <AccordionItem title='Which should I chose?'>
+        <AccordionItem title='Which should I choose?'>
           <p dangerouslySetInnerHTML={{__html: this.props.partitionedDbHelpText}} />
         </AccordionItem>
       </Accordion>