Skip to content

Commit

Permalink
Merge pull request #32 from iqb-berlin/feature/ruleset-array-length
Browse files Browse the repository at this point in the history
Feature/ruleset array length
  • Loading branch information
jurei733 authored Nov 3, 2024
2 parents e834de9 + be12acc commit 754d95c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "coding-components",
"config": {
"schemer_version": "2.1.1"
"schemer_version": "2.1.2"
},
"scripts": {
"ng": "ng",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { MatSelectionList, MatListOption } from '@angular/material/list';

export interface SelectCodeRuleReferenceDialogData {
isFragmentMode: boolean;
value: number | 'ANY' | 'ANY_OPEN' | 'SUM';
value: number | 'ANY' | 'ANY_OPEN' | 'SUM' | 'LENGTH' ;
}

@Component({
Expand All @@ -33,6 +33,9 @@ export interface SelectCodeRuleReferenceDialogData {
<mat-list-option [value]="'SUM'">
{{'rule-set.reference.sum' | translate}}
</mat-list-option>
<mat-list-option [value]="'LENGTH'">
{{'rule-set.reference.length' | translate}}
</mat-list-option>
}
<mat-list-option [value]="'specific'">
{{(refData.isFragmentMode ? 'rule' : 'rule-set') + '.reference.specific' | translate}}:
Expand Down
Loading

0 comments on commit 754d95c

Please sign in to comment.