Skip to content

Commit

Permalink
[supabase#199] limit GD name characters
Browse files Browse the repository at this point in the history
  • Loading branch information
gazillion101 authored and kamyshdm committed Apr 7, 2023
1 parent 052cdfa commit ce82fd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/js/packages/portal/src/App/DatascopeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ const DatascopeForm: React.FC<DatascopeFormProps> = (props) => {
<Col xs="auto">
<Form.Group className="mb-3" controlId="dbname">
<Form.Label>Database Name</Form.Label>
<Form.Control size="sm" type="text" placeholder="alphanumeric"
<Form.Control size="sm" type="text" placeholder="alphanumeric_"
required
pattern=".+"
pattern="[\w_]+"
value={props.dbname}
onChange={e => {

Expand Down

0 comments on commit ce82fd3

Please sign in to comment.