Skip to content

Commit

Permalink
hub spoke disjoint value fixed (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
soson authored May 5, 2022
1 parent b37b7b6 commit 2c2eb43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const freeResources = async (vpnId: string, counter: number) => {
const ServiceSchema = yup.object().shape({
vpnId: yup.string().nullable(),
customerName: yup.string().required('Customer Name is required'),
vpnServiceTopology: yup.mixed().oneOf(['any-to-any', 'hub-spoke', 'hub-spoke-disjointed', 'custom']),
vpnServiceTopology: yup.mixed().oneOf(['any-to-any', 'hub-spoke', 'hub-spoke-disjoint', 'custom']),
defaultCVlan: yup.mixed().oneOf(['400', '1000', '50', 'custom']),
customCVlan: yup
.number()
Expand Down
2 changes: 1 addition & 1 deletion public/gamma-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ window.__GAMMA_FORM_OPTIONS__ = {
vpn_topology: {
'any-to-any': 'any-to-any',
'hub-spoke': 'hub-spoke',
'hub-spoke-disjointed': 'hub-spoke-disjointed',
'hub-spoke-disjoint': 'hub-spoke-disjoint',
},
default_cvlan: {
400: 'Main Corporate VPN',
Expand Down

0 comments on commit 2c2eb43

Please sign in to comment.