Client: fix form upload validation on key enter

pull/15/head
Chocobozzz 2016-10-17 21:14:13 +02:00
parent 25cad91992
commit 4648530318
2 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
<form novalidate (ngSubmit)="upload()" [formGroup]="form">
<form novalidate [formGroup]="form">
<div class="form-group">
<label for="name">Name</label>
<input
@ -68,8 +68,9 @@
<div class="form-group">
<input
type="submit" value="Upload" class="btn btn-default form-control" [title]="getInvalidFieldsTitle()"
[disabled]="!form.valid || tags.length === 0 || filename === null"
type="button" value="Upload" class="btn btn-default form-control"
[title]="getInvalidFieldsTitle()" [disabled]="!form.valid || tags.length === 0 || filename === null"
(click)="upload()"
>
</div>
</form>

View File

@ -130,6 +130,7 @@ export class VideoAddComponent extends FormReactive implements OnInit {
removeTag(tag: string) {
this.tags.splice(this.tags.indexOf(tag), 1);
this.form.get('currentTag').enable();
}
upload() {