Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/upstream/dev' into add-storyboo…
Browse files Browse the repository at this point in the history
…k-a11y-testing-#142
  • Loading branch information
seanmalbert committed Jul 14, 2021
2 parents e5da44d + 996cfbc commit 6a756c4
Show file tree
Hide file tree
Showing 20 changed files with 589 additions and 491 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ yarn-error.log*
storybook-static

# Cypress test output videos
apps/**/cypress/videos
apps/**/cypress/screenshots
**/cypress/videos
**/cypress/screenshots

# Complied Typescript
dist
Expand Down
6 changes: 3 additions & 3 deletions backend/core/src/shared/dto/whatToExpect.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { ValidationsGroupsEnum } from "../types/validations-groups-enum"
export class WhatToExpect {
@Expose()
@IsString({ groups: [ValidationsGroupsEnum.default] })
applicantsWillBeContacted: string
applicantsWillBeContacted?: string | null
@Expose()
@IsString({ groups: [ValidationsGroupsEnum.default] })
allInfoWillBeVerified: string
allInfoWillBeVerified?: string | null
@Expose()
@IsString({ groups: [ValidationsGroupsEnum.default] })
bePreparedIfChosen: string
bePreparedIfChosen?: string | null
}
Loading

0 comments on commit 6a756c4

Please sign in to comment.