Skip to content

Commit bf0c383

Browse files
lit fixes
1 parent 92345a4 commit bf0c383

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

project/ws/app/src/lib/routes/home/components/request-list/request-list.component.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ export class RequestListComponent implements OnInit {
6464
fullProfile: any
6565
rootOrgId: any
6666
constructor(private sanitizer: DomSanitizer,
67-
private homeService: ProfileV2Service,
68-
private datePipe: DatePipe,
69-
private activeRoute: ActivatedRoute,
70-
private dialog: MatDialog,
71-
private router: Router,
72-
private snackBar: MatSnackBar,
73-
private loaderService: LoaderService,
67+
private homeService: ProfileV2Service,
68+
private datePipe: DatePipe,
69+
private activeRoute: ActivatedRoute,
70+
private dialog: MatDialog,
71+
private router: Router,
72+
private snackBar: MatSnackBar,
73+
private loaderService: LoaderService,
7474
) { }
7575
requestList: any[] = [
7676
`You can request new content by filling out the request form. You will have the option to choose your content provider and
@@ -242,7 +242,7 @@ export class RequestListComponent implements OnInit {
242242
if (res) {
243243
setTimeout(() => {
244244
this.getRequestList()
245-
}, 1000)
245+
}, 1000)
246246
}
247247

248248
this.snackBar.open('Marked as Invalid')
@@ -264,7 +264,7 @@ export class RequestListComponent implements OnInit {
264264
if (_res && _res.data === 'confirmed') {
265265
setTimeout(() => {
266266
this.getRequestList()
267-
}, 1000)
267+
}, 1000)
268268
this.snackBar.open('Assigned submitted Successfully')
269269
} else {
270270
// this.snackBar.open('error')
@@ -285,7 +285,7 @@ export class RequestListComponent implements OnInit {
285285
if (_res && _res.data === 'confirmed') {
286286
setTimeout(() => {
287287
this.getRequestList()
288-
}, 1000)
288+
}, 1000)
289289

290290
this.snackBar.open('Re-assign submitted Successfully')
291291
} else {

project/ws/app/src/lib/routes/home/routes/designation/components/designations/designations.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class DesignationsComponent implements OnInit {
134134
} else {
135135
setTimeout(() => {
136136
this.getOrgReadData()
137-
}, 10000)
137+
}, 10000)
138138
}
139139
// console.log('orgFramework Details', res)
140140
})

project/ws/app/src/lib/routes/home/routes/designation/services/designations.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export class DesignationsService {
193193
frameworkId,
194194
categoryId,
195195
categoryTermCode
196-
)}`, reguestBody)
196+
)}`, reguestBody)
197197
}
198198

199199
publishFramework(frameworkName: string) {

project/ws/app/src/lib/routes/home/routes/odcs-mapping/odcs-mapping.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class OdcsMappingComponent implements OnInit {
5252
callResizeEvent(_event: any) {
5353
setTimeout(() => {
5454
window.dispatchEvent(new Event('resize'))
55-
}, 100)
55+
}, 100)
5656
}
5757

5858
createFreamwork() {
@@ -79,7 +79,7 @@ export class OdcsMappingComponent implements OnInit {
7979
} else {
8080
setTimeout(() => {
8181
this.getOrgReadData()
82-
}, 10000)
82+
}, 10000)
8383
}
8484
})
8585
}

project/ws/app/src/lib/routes/users/services/upload.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import * as fileSaver from 'file-saver'
66

77
const API_ENDPOINTS = {
88
// bulkUpload: `/apis/proxies/v8/user/v1/bulkupload`,
9-
bulkUpload: `/apis/proxies/v8/user/v2/bulkupload`, //csv support
9+
bulkUpload: `/apis/proxies/v8/user/v2/bulkupload`, // csv support
1010
downloadReport: `/apis/protected/v8/admin/userRegistration/bulkUploadReport`,
1111
getBulkUploadData: '/apis/proxies/v8/user/v1/bulkupload',
1212
getBulkApproval: '/apis/proxies/v8/workflow/admin/bulkupdate/getstatus',
1313
// bulkApprovalUpload: `/apis/proxies/v8/workflow/admin/transition/bulkupdate`,
14-
bulkApprovalUpload: '/apis/proxies/v8/workflow/admin/v2/bulkupdate/transition', //csv support
14+
bulkApprovalUpload: '/apis/proxies/v8/workflow/admin/v2/bulkupdate/transition', // csv support
1515
}
1616

1717
@Injectable()

0 commit comments

Comments
 (0)