tango-app-ui-manage-tickets 3.3.0-beta.2 → 3.3.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -395,12 +395,21 @@ class TicketsComponent {
|
|
|
395
395
|
}
|
|
396
396
|
else {
|
|
397
397
|
this.typeName = "Resloved By";
|
|
398
|
-
this.
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
398
|
+
if (this.users.userType === "tango" && this.type === 'infra') {
|
|
399
|
+
this.statusType = [
|
|
400
|
+
{ text: "Open", id: "open" },
|
|
401
|
+
{ text: "In Progress", id: "inprogress" },
|
|
402
|
+
{ text: "Refresh Ticket", id: "refreshticket" },
|
|
403
|
+
{ text: "Closed", id: "closed" },
|
|
404
|
+
];
|
|
405
|
+
}
|
|
406
|
+
else {
|
|
407
|
+
this.statusType = [
|
|
408
|
+
{ text: "Open", id: "open" },
|
|
409
|
+
{ text: "In Progress", id: "inprogress" },
|
|
410
|
+
{ text: "Closed", id: "closed" },
|
|
411
|
+
];
|
|
412
|
+
}
|
|
404
413
|
this.issueTypeList = [
|
|
405
414
|
{ text: "High Count", id: "highcount" },
|
|
406
415
|
{ text: "Low Count", id: "lowcount" },
|