Skip to content

Commit

Permalink
Merge pull request #3484 from bettyblocks/acceptance
Browse files Browse the repository at this point in the history
Merge Acceptance into Edge
  • Loading branch information
ingmar-stipriaan authored Oct 1, 2024
2 parents 31f2270 + 2f55b6f commit d2295af
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish_bundle_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,9 @@ jobs:
AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_CA4 }}
AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_CA4 }}
run: yarn upload-bundle
- name: upload sanofi
env:
AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_SANOFI }}
AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_SANOFI }}
run: yarn upload-bundle

9 changes: 9 additions & 0 deletions .github/workflows/publish_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release
- name: upload sanofi
env:
AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_SANOFI }}
AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_SANOFI }}
run: yarn upload
- name: release notes
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## [2.191.2](https://github.com/bettyblocks/material-ui-component-set/compare/v2.191.1...v2.191.2) (2024-09-25)


### Bug Fixes

* rerender components when initial value changes ([f4bfdde](https://github.com/bettyblocks/material-ui-component-set/commit/f4bfddecdeb9a24cc15159ff09a96ce720c08dd0))

## [2.191.1](https://github.com/bettyblocks/material-ui-component-set/compare/v2.191.0...v2.191.1) (2024-09-25)


### Bug Fixes

* add extra checks for invalid dates ([c3c5593](https://github.com/bettyblocks/material-ui-component-set/commit/c3c55936c694982b2489cfcc4908758ae0db7565))

# [2.191.0](https://github.com/bettyblocks/material-ui-component-set/compare/v2.190.5...v2.191.0) (2024-09-24)


### Features

* introduce deployment for sanofi ([225dd5b](https://github.com/bettyblocks/material-ui-component-set/commit/225dd5b1a8031d97b5153b6ca639a2ec65c8e2fb))

## [2.190.5](https://github.com/bettyblocks/material-ui-component-set/compare/v2.190.4...v2.190.5) (2024-09-12)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "component-set",
"version": "2.190.5",
"version": "2.191.2",
"main": "dist/templates.json",
"license": "UNLICENSED",
"private": false,
Expand Down
4 changes: 1 addition & 3 deletions src/components/dateTimePickerInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@
const isDev = env === 'dev';
const parsedValue = useText(value);
const [isDisabled, setIsDisabled] = useState(disabled);
const [selectedDate, setSelectedDate] = useState(
(parsedValue && parsedValue !== 'undefined' && !isDev) || null,
);
const [selectedDate, setSelectedDate] = useState(parsedValue || null);
const [errorState, setErrorState] = useState(error);
const [afterFirstValidation, setAfterFirstValidation] = useState(false);
const helperTextResolved = useText(helperText);
Expand Down

0 comments on commit d2295af

Please sign in to comment.