Skip to content

Commit

Permalink
Merge pull request #49 from thefrontside/pc/fixes
Browse files Browse the repository at this point in the history
add fixes
  • Loading branch information
dagda1 authored Mar 15, 2023
2 parents 48baf5d + 22806d2 commit 29817a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugins/parodos/src/components/workflow/constants.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const ASSESSMENT_WORKFLOW = 'subWorkFlowTwo'; // 'onboardingAssessment_ASSESSMENT_WORKFLOW';
export const ASSESSMENT_WORKFLOW = 'onboardingAssessment_ASSESSMENT_WORKFLOW';
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,13 @@ export function getJsonSchemaType(type: WorkFlowTaskParameterType) {
type: 'string',
format: 'email',
};
case 'MOCK-SELECT':
return {
type: 'array',
};
case 'URL':
return {
type: 'string',
pattern: '^(https?)://', // TODO: better regex
};
case 'MOCK-SELECT':
return {};
default:
return {
type: 'string',
Expand Down

0 comments on commit 29817a4

Please sign in to comment.