Skip to content

Commit

Permalink
fixup! frontend: Allow to change and show application.product_id
Browse files Browse the repository at this point in the history
  • Loading branch information
yolossn committed Nov 26, 2021
1 parent 0ed6a93 commit ef21a37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/js/components/Applications/EditDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ function EditDialog(props: { create?: any; data: any; show: boolean; onHide: ()
.matches(
/^[a-zA-Z]+([a-zA-Z0-9_\-]*[a-zA-Z0-9])*(\.[a-zA-Z]+([a-zA-Z0-9_\-]*[a-zA-Z0-9])*)+$/,
t('applications|Must be a reverse domain ID like io.example.MyApp')
),
)
.nullable(),
description: Yup.string().max(250, t('applications|Must be less than 250 characters')),
});

Expand Down

0 comments on commit ef21a37

Please sign in to comment.