Skip to content
Snippets Groups Projects
Verified Commit bc19d5a5 authored by Thomas Lenz's avatar Thomas Lenz Committed by Lukas Maximilian Kimpel
Browse files

Set checkbox before label and points of answer

parent aa768b14
Branches
Tags
No related merge requests found
......@@ -15,10 +15,10 @@
<mat-card-content>
<mat-list *ngFor="let answer of options; let i = index" [attr.data-index]="i">
<!-- <mat-checkbox color="primary">{{answer.label}}</mat-checkbox> -->
<div fxLayout="row">
<div fxLayout="row" fxLayoutGap="20px">
<mat-checkbox color="primary" value="checked"></mat-checkbox>
<input matInput placeholder="Label" value="{{answer.label}}">
<input matInput placeholder="Points" value="{{answer.points}}">
<mat-checkbox color="primary" value="checked"></mat-checkbox>
</div>
</mat-list>
<mat-divider class="underListDivider"></mat-divider>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment