|
|
@ -1,18 +1,17 @@ |
|
|
<div class="row"> |
|
|
<div class="row g-1"> |
|
|
<div class="col"> |
|
|
<div class="col"> |
|
|
<div class="form-inline"> |
|
|
<sqx-query-path |
|
|
<sqx-query-path |
|
|
(pathChange)="changePath($event)" |
|
|
(pathChange)="changePath($event)" |
|
|
[path]="sorting.path" |
|
|
[path]="sorting.path" |
|
|
[model]="model"> |
|
|
[model]="model"> |
|
|
</sqx-query-path> |
|
|
</sqx-query-path> |
|
|
|
|
|
|
|
|
|
|
|
<select class="form-select ms-2" [ngModel]="sorting.order" (ngModelChange)="changeOrder($event)"> |
|
|
|
|
|
<option *ngFor="let mode of modes" [ngValue]="mode">{{mode}}</option> |
|
|
|
|
|
</select> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
<div class="col-auto ps-2"> |
|
|
<div class="col-auto"> |
|
|
|
|
|
<select class="form-select ms-2" [ngModel]="sorting.order" (ngModelChange)="changeOrder($event)"> |
|
|
|
|
|
<option *ngFor="let mode of modes" [ngValue]="mode">{{mode}}</option> |
|
|
|
|
|
</select> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div class="col-auto"> |
|
|
<button type="button" class="btn btn-text-danger" (click)="remove.emit()"> |
|
|
<button type="button" class="btn btn-text-danger" (click)="remove.emit()"> |
|
|
<i class="icon-bin2"></i> |
|
|
<i class="icon-bin2"></i> |
|
|
</button> |
|
|
</button> |
|
|
|