Skip to content

Gig application #5025

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Oct 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ workflows:
filters:
branches:
only:
- develop
- gig-application
# This is beta env for production soft releases
- "build-prod-beta":
context : org-global
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@ exports[`Default render 1`] = `
<div
className="src-shared-components-GUIKit-Checkbox-___style__checkmark___1xdsj"
>
<IconCheckSolid
<img
alt="checkmark-icon"
className="src-shared-components-GUIKit-Checkbox-___style__after___2rEBg"
height={13}
viewBox="0 0 18 15"
width={13}
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
src="/community-app-assets/images/07507a04e0986d806cbd3ec73c724143.png"
/>
</div>
</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`Default render 1`] = `
<div
className="datepickerContainer src-shared-components-GUIKit-Datepicker-___style__container___Sl58X"
className="src-shared-components-GUIKit-Datepicker-___style__container___Sl58X"
>
<withStyles(SingleDatePicker)
anchorDirection="left"
Expand All @@ -19,7 +19,7 @@ exports[`Default render 1`] = `
/>
}
date={null}
daySize={53}
daySize={47}
disableScroll={false}
disabled={false}
displayFormat="MMM DD, YYYY"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Default render 1`] = `
<div
className="radioButtonContainer src-shared-components-GUIKit-RadioButton-___style__radioButtonContainer___3YAY0 src-shared-components-GUIKit-RadioButton-___style__smSize____lb3s"
>
<React.Fragment>
<div
className="radioButton src-shared-components-GUIKit-RadioButton-___style__radioButton___2Jtbj"
className="radioButtonContainer src-shared-components-GUIKit-RadioButton-___style__radioButtonContainer___3YAY0 src-shared-components-GUIKit-RadioButton-___style__smSize____lb3s"
>
<label
className="src-shared-components-GUIKit-RadioButton-___style__container___3nVSA"
<div
className="radioButton src-shared-components-GUIKit-RadioButton-___style__radioButton___2Jtbj"
>
<input
checked={true}
onChange={[Function]}
type="radio"
/>
<label
className="src-shared-components-GUIKit-RadioButton-___style__container___3nVSA"
>
<input
checked={true}
onChange={[Function]}
type="radio"
/>
<span
className="src-shared-components-GUIKit-RadioButton-___style__checkmark___1iCFJ"
/>
</label>
<span
className="src-shared-components-GUIKit-RadioButton-___style__checkmark___1iCFJ"
/>
</label>
<span
className="src-shared-components-GUIKit-RadioButton-___style__label___MCxnk"
>
radio
</span>
className="src-shared-components-GUIKit-RadioButton-___style__label___MCxnk"
>
radio
</span>
</div>
</div>
</div>
</React.Fragment>
`;
Loading