Skip to content

Commit c513551

Browse files
Merge branch 'main' into architectural-overhaul-1530080140389193116
2 parents c8300fe + 70e8182 commit c513551

4 files changed

Lines changed: 353 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ dist-ssr
3333
*.njsproj
3434
*.sln
3535
*.sw?
36+
node_modules

frontend/src/pages/veil/ui/veil-form/veil-form.component.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,10 @@ export class VeilFormComponent implements OnInit {
4848

4949
ngOnInit(): void {
5050
this.initForm();
51-
setTimeout(() => {
52-
console.log(this.veilForm.price().errors());
53-
}, 3000);
5451
}
5552

5653
initForm() {
5754
if (this.veil()) {
58-
console.log(this.veil());
5955
this.isEditMode.set(true);
6056

6157
this.previewImage.set(linkServerConvert(this.veil().image));
@@ -89,7 +85,6 @@ export class VeilFormComponent implements OnInit {
8985

9086
onSubmit() {
9187
if (this.veilForm().valid()) {
92-
console.log(this.veilForm().value());
9388
this.save.emit({
9489
data: this.veilForm().value(),
9590
file: this.selectedFile(),

package-lock.json

Lines changed: 330 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "full-mavluda-beauty",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {},
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/beginwebdev2002/fullstack-mavluda.git"
10+
},
11+
"keywords": [],
12+
"author": "",
13+
"license": "ISC",
14+
"type": "commonjs",
15+
"bugs": {
16+
"url": "https://github.com/beginwebdev2002/fullstack-mavluda/issues"
17+
},
18+
"homepage": "https://github.com/beginwebdev2002/fullstack-mavluda#readme",
19+
"devDependencies": {
20+
"concurrently": "^9.2.1"
21+
}
22+
}

0 commit comments

Comments
 (0)