Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
510 B

<sqx-filter-logical isRoot="true" [filter]="queryValue.filter" [model]="model" [language]="language"
(change)="emitQueryChange()">
</sqx-filter-logical>
<h4 class="mt-4">Sorting</h4>
<div class="mb-2" *ngFor="let sorting of queryValue.sort; let i = index">
<sqx-sorting [sorting]="sorting" [model]="model"
(remove)="removeSorting(i)" (change)="emitQueryChange()">
</sqx-sorting>
</div>
<button class="btn btn-outline-success btn-sm mr-2" (click)="addSorting()">
Add Sorting
</button>