Skip to content

Commit

Permalink
Merge branch 'develop' into fix-percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
RadhepS authored Oct 15, 2024
2 parents e5b637c + 1404d80 commit 9ef644f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
node_modules
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,22 +166,22 @@ export class ConfiguratorAttributeNumericInputFieldService {
if (valueName.includes('>')) {
minVal = valueName;
interval.minValueIncluded = false;
minVal = minVal.replace('>', '');
minVal = minVal.replace(/>/g, '');
}
if (valueName.includes('<')) {
maxVal = valueName;
interval.maxValueIncluded = false;
maxVal = maxVal.replace('<', '');
maxVal = maxVal.replace(/</g, '');
}
if (valueName.includes('≥')) {
minVal = valueName;
interval.minValueIncluded = true;
minVal = minVal.replace('≥', '');
minVal = minVal.replace(//g, '');
}
if (valueName.includes('≤')) {
maxVal = valueName;
interval.maxValueIncluded = true;
maxVal = maxVal.replace('≤', '');
maxVal = maxVal.replace(//g, '');
}
if (
!valueName.includes('>') &&
Expand Down

0 comments on commit 9ef644f

Please sign in to comment.