bug fixing

This commit is contained in:
Maria Teresa Paratore 2024-05-31 16:51:02 +02:00
parent 9d0496c8a8
commit 88158910be
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ export class FacetComposerComponent implements OnInit {
optionTypes = [
{ value: 'boolean'},
{ value: 'date'},//text
{ value: 'datetime-local'},//text
{ value: 'password'},
{ value: 'float'},//text
{ value: 'number'},
@ -206,7 +206,7 @@ export class FacetComposerComponent implements OnInit {
for(let i=0; i<props.length; i++){
const prop=props[i];
if(prop.type==="date"){
if(prop.type==="datetime-local"){
fc = this.fb.control(new Date())
}
if(prop.type==="number"){