Components/create-edit-modal: make first image mandatory

This commit is contained in:
Toast 2025-02-06 19:01:54 +01:00
parent f839706d05
commit 455e2869a5
2 changed files with 7 additions and 2 deletions

View file

@ -40,8 +40,11 @@
<input formControlName="{{$index}}" type="text" class="form-control" placeholder="">
<label class="form-label">Image {{ $index + 1 }} URL</label>
</div>
<button type="button" class="btn btn-outline-danger" (click)="removeImageControl($index)"><i
class="bi bi-x-lg"></i></button>
@if (!$first) {
<button type="button" class="btn btn-outline-danger" (click)="removeImageControl($index)">
<i class="bi bi-x-lg"></i>
</button>
}
</div>
</li>
}

View file

@ -44,6 +44,8 @@ export class CreateEditModalComponent {
description: new FormControl(this.show?.description, Validators.required),
images: new FormArray([])
})
this.addImageControl()
}
get images(): FormArray {