ciyidogan commited on
Commit
741c47b
·
verified ·
1 Parent(s): bd8a530

Update flare-ui/src/app/components/chat/chat.component.html

Browse files
flare-ui/src/app/components/chat/chat.component.html CHANGED
@@ -21,23 +21,25 @@
21
  </div>
22
  </div>
23
 
24
- <form (ngSubmit)="send()" class="input-row">
25
- <mat-form-field appearance="outline" class="flex-1">
26
- <input
27
- matInput
28
- placeholder="Type your message…"
29
- [formControl]="input"
30
- autocomplete="off"
31
- />
32
- </mat-form-field>
33
-
34
- <button
35
- mat-icon-button
36
- color="primary"
37
- type="submit"
38
- [disabled]="input.invalid"
39
- >
40
- <mat-icon>send</mat-icon>
41
- </button>
42
- </form>
 
 
43
  </mat-card>
 
21
  </div>
22
  </div>
23
 
24
+ <!-- ... önceki kod aynı ... -->
25
+
26
+ <form (ngSubmit)="send()" class="input-row">
27
+ <mat-form-field appearance="outline" class="flex-1">
28
+ <input
29
+ matInput
30
+ placeholder="Type your message…"
31
+ [formControl]="input" <!-- ← burada formControl -->
32
+ autocomplete="off"
33
+ />
34
+ </mat-form-field>
35
+
36
+ <button
37
+ mat-icon-button
38
+ color="primary"
39
+ type="submit"
40
+ [disabled]="input.invalid">
41
+ <mat-icon>send</mat-icon>
42
+ </button>
43
+ </form>
44
+
45
  </mat-card>