Skip to content

Commit

Permalink
Merge pull request #38 from Batch-908-AugustDuet/fixing-upload-page-i…
Browse files Browse the repository at this point in the history
…nconsistency

Fixed inconsistencies within the Upload Page Component's HTML file be…
  • Loading branch information
dmaroso authored Jan 20, 2021
2 parents 0003927 + 1f6fe70 commit 74b5125
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ <h2 class="page-title">Upload a file</h2>
<div fxLayoutAlign="center" fxFlexFill>
<mat-form-field appearance="outline">
<mat-label>Topics</mat-label>
<mat-chip-list #chipList aria-label="Topic selection">
<mat-chip *ngFor="let topic of topics" [selectable]="selectable" [removable]="removable"
(removed)="remove(topic)">
{{topic.value}}
<mat-chip-list #chipList aria-label="Tag selection">
<mat-chip *ngFor="let tag of tags" [selectable]="selectable" [removable]="removable"
(removed)="remove(tag)">
{{tag.value}}
<mat-icon matChipRemove *ngIf="removable">cancel</mat-icon>
</mat-chip>
<input placeholder="New topic..." [matChipInputFor]="chipList"
<input placeholder="New tag..." [matChipInputFor]="chipList"
[matChipInputSeparatorKeyCodes]="separatorKeysCodes" [matChipInputAddOnBlur]="addOnBlur"
(matChipInputTokenEnd)="add($event)">
</mat-chip-list>
</mat-form-field>
</div>
<!--Which one to keep?-->
<mat-form-field appearance="outline">
<!-- <mat-form-field appearance="outline">
<mat-label>Topics</mat-label>
<mat-chip-list #chipList aria-label="Topic selection">
<mat-chip *ngFor="let tag of tags" [selectable]="selectable" [removable]="removable"
Expand All @@ -60,7 +60,7 @@ <h2 class="page-title">Upload a file</h2>
[matChipInputSeparatorKeyCodes]="separatorKeysCodes" [matChipInputAddOnBlur]="addOnBlur"
(matChipInputTokenEnd)="add($event)">
</mat-chip-list>
</mat-form-field>
</mat-form-field> -->

<!-- DESCRIPTION -->
<div fxLayoutAlign="center" fxFlexFill>
Expand Down

0 comments on commit 74b5125

Please sign in to comment.