File tree Expand file tree Collapse file tree
frontend/src/pages/veil/ui/veil-form Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,21 +49,16 @@ export class VeilFormComponent implements OnInit {
4949
5050 ngOnInit ( ) : void {
5151 this . initForm ( ) ;
52- setTimeout ( ( ) => {
53- console . log ( this . veilForm . price ( ) . errors ( ) ) ;
54- } , 3000 ) ;
5552 }
5653
5754 initForm ( ) {
5855 if ( this . veil ( ) ) {
59- console . log ( this . veil ( ) ) ;
6056 this . isEditMode . set ( true ) ;
6157
6258 this . previewImage . set ( linkServerConvert ( this . veil ( ) . image ) ) ;
6359 this . veilModel . set ( this . veil ( ) ) ;
6460 } else {
6561 this . isEditMode . set ( false ) ;
66- console . log ( "veil" , veilFormData ) ;
6762
6863 this . veilModel . set ( veilFormData ) ;
6964 }
@@ -92,7 +87,6 @@ export class VeilFormComponent implements OnInit {
9287
9388 onSubmit ( ) {
9489 if ( this . veilForm ( ) . valid ( ) ) {
95- console . log ( this . veilForm ( ) . value ( ) ) ;
9690 this . save . emit ( {
9791 data : this . veilForm ( ) . value ( ) ,
9892 file : this . selectedFile ( ) ,
You can’t perform that action at this time.
0 commit comments