Skip to content

Commit

Permalink
Fixes #33
Browse files Browse the repository at this point in the history
  • Loading branch information
ligreman committed Mar 22, 2023
1 parent 5f7e547 commit 86b8d20
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 42 deletions.
70 changes: 35 additions & 35 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "king",
"version": "3.0.6",
"version": "3.0.7",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down Expand Up @@ -30,7 +30,7 @@
"@swimlane/ngx-charts": "20.1.2",
"file-saver": "2.0.5",
"hammerjs": "2.0.8",
"joi": "17.8.4",
"joi": "17.9.1",
"lodash": "4.17.21",
"luxon": "3.3.0",
"moment": "2.29.4",
Expand All @@ -39,8 +39,8 @@
"ngx-toastr": "15.2.2",
"rxjs": "7.5.7",
"tslib": "2.5.0",
"vis-data": "7.1.4",
"vis-network": "9.1.4",
"vis-data": "7.1.6",
"vis-network": "9.1.5",
"vis-util": "5.0.3",
"zone.js": "0.12.0"
},
Expand All @@ -53,7 +53,7 @@
"@types/jasminewd2": "2.0.10",
"@types/lodash": "4.14.191",
"@types/luxon": "3.2.0",
"@types/node": "18.15.3",
"@types/node": "18.15.5",
"codelyzer": "6.0.2",
"jasmine-core": "4.6.0",
"jasmine-spec-reporter": "7.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@ export class DialogNewPluginComponent implements OnInit, OnDestroy {
// Si tiene one_of es un select
tipo = 'select';
opts = value.elements.one_of;
} else if (value.elements.type === 'string') {
// It is an array of strings
} else if (value.elements.type === 'string' || value.elements.type === 'integer' || value.elements.type === 'number') {
// It is an array of strings or integers
this.arrayOfStrings.push(currentGroup + '.' + field);
} else if (value.elements.type === 'record') {
tipo = 'array_records';
Expand Down

0 comments on commit 86b8d20

Please sign in to comment.