Skip to content
Snippets Groups Projects
Commit db41b6de authored by François Agneray's avatar François Agneray
Browse files

#44 => done

parent f30e1c5b
No related branches found
No related tags found
2 merge requests!72Develop,!43Resolve "Datatable nb items"
......@@ -58,8 +58,8 @@
<div class="col">
Show
<select class="custom-select" (change)="changeNbItems($event.target.value)">
<option *ngIf="dataLength <= 10 || dataLength >10" value="10" selected="true">10</option>
<option *ngIf="dataLength >10" value="20">20</option>
<option value="10" selected="true">10</option>
<option *ngIf="dataLength > 10" value="20">20</option>
<option *ngIf="dataLength > 20" value="50">50</option>
<option *ngIf="dataLength > 50" value="100">100</option>
</select>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment