Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
EVG-20817: Don't invalidate General project settings form based on in…
Browse files Browse the repository at this point in the history
…itial project identifier (#2104)
  • Loading branch information
SupaJoon authored Oct 16, 2023
1 parent a797ba9 commit 0cab41a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/projectSettings/tabs/GeneralTab/getFormSchema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ export const getFormSchema = (
title: "Identifier",
default: "",
minLength: 1,
format: "noSpecialCharacters",
// Don't invalidate form based on initial data
format: identifierHasChanges
? "noSpecialCharacters"
: "noSpaces",
},
}),
batchTime: {
Expand Down

0 comments on commit 0cab41a

Please sign in to comment.