Skip to content

Commit

Permalink
Merge branch 'main' into i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit authored Sep 26, 2024
2 parents f44cba0 + 44aac09 commit dad462d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ the detailed section referring to by linking pull requests or issues.
definition in a single call
([#841](https://github.com/sovity/edc-ui/issues/841))
- Fixed config not being applied properly after a version upgrade
- Added initial support for UI internationalization
- Fixed Date to DateTime conversion issues when using operators `LT` and `GT`
([#846](https://github.com/sovity/edc-ui/issues/846))
- Added initial support for UI internationalization ([#680](https://github.com/sovity/edc-ui/issues/680))

### Deployment Migration Notes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const jsonAdapter: PolicyFormAdapter<string> = {
};

const isUpperBound = (operator: PolicyOperatorConfig) =>
operator.id === 'LT' || operator.id === 'LEQ';
operator.id === 'GT' || operator.id === 'LEQ';

/**
* Helper function for reducing mental complexity of mapping code:
Expand Down

0 comments on commit dad462d

Please sign in to comment.