Skip to content

Commit

Permalink
feat: only allow lowercase titles in title (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
roshaans authored Jul 12, 2023
1 parent bdec5b6 commit 4aaa74d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const IndexerConfigOptions = ({ updateConfig }) => {
aria-label="IndexerName"
value={indexerNameField}
disabled={!isCreateNewIndexer && showPublishModal}
onChange={(e) => setIndexerNameField(e.target.value)}
onChange={(e) => setIndexerNameField(e.target.value.toLowerCase().trim())}
/>
</InputGroup>
<InputGroup size="sm" className="pt-3">
Expand Down

0 comments on commit 4aaa74d

Please sign in to comment.