Commit 3458893e authored by ari_darmawan's avatar ari_darmawan

add limit 10

parent 08c41c4b
......@@ -192,7 +192,7 @@
<td>{{data.pic}}</td>
<td>{{(data.ticket_solution != null)? (data.ticket_solution | pipeSubstring) : ''}}</td>
<td>{{data.ticket_status}}</td>
<td>{{data.close_date}}</td>
<td>{{data.resolve_date}}</td>
<td>{{data.sla_internal}}</td>
<td>{{data.sla_hari_kerja}}</td>
<td>{{data.target_penyelesaian}}</td>
......@@ -228,7 +228,7 @@
<td>{{data.pic}}</td>
<td>{{(data.ticket_solution != null)? (data.ticket_solution | pipeSubstring) : ''}}</td>
<td>{{data.ticket_status}}</td>
<td>{{data.close_date}}</td>
<td>{{data.resolve_date}}</td>
<td>{{data.sla_internal}}</td>
<td>{{data.sla_hari_kerja}}</td>
<td>{{data.target_penyelesaian}}</td>
......@@ -302,7 +302,7 @@
<td>{{data.ticket_servicefamiliy_name}}</td>
<td>{{data.deskripsi}}</td>
<td>{{data.ticket_status}}</td>
<td>{{data.close_date}}</td>
<td>{{data.target_penyelesaian}}</td>
<td>{{data.sla_internal}}</td>
<td>{{data.sla_hari_kerja}}</td>
</tr>
......
......@@ -40,7 +40,7 @@ export class AdminDashboardLogboookComponent implements OnInit, OnChanges {
}
public TicketReportRequest = {
page : 1,
perpage : 8,
perpage : 10,
start_date : null,
end_date : null,
servicefamily_id : [],
......@@ -88,6 +88,8 @@ export class AdminDashboardLogboookComponent implements OnInit, OnChanges {
this.isTicketReportEmpty = true;
this.isTicketReportLoading = false;
this.TicketReportData = [];
this.TicketReportRequest.page = 1;
this.TicketReportRequest.perpage = 10;
// this.GettingTicketReportDataAPI(this.TicketReportRequest)
}
......
Markdown is supported
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