Skip to content

Commit

Permalink
lit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mansurskTarento committed Jul 25, 2024
1 parent 92345a4 commit bf0c383
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ export class RequestListComponent implements OnInit {
fullProfile: any
rootOrgId: any
constructor(private sanitizer: DomSanitizer,
private homeService: ProfileV2Service,
private datePipe: DatePipe,
private activeRoute: ActivatedRoute,
private dialog: MatDialog,
private router: Router,
private snackBar: MatSnackBar,
private loaderService: LoaderService,
private homeService: ProfileV2Service,
private datePipe: DatePipe,
private activeRoute: ActivatedRoute,
private dialog: MatDialog,
private router: Router,
private snackBar: MatSnackBar,
private loaderService: LoaderService,
) { }
requestList: any[] = [
`You can request new content by filling out the request form. You will have the option to choose your content provider and
Expand Down Expand Up @@ -242,7 +242,7 @@ export class RequestListComponent implements OnInit {
if (res) {
setTimeout(() => {
this.getRequestList()
}, 1000)
}, 1000)
}

this.snackBar.open('Marked as Invalid')
Expand All @@ -264,7 +264,7 @@ export class RequestListComponent implements OnInit {
if (_res && _res.data === 'confirmed') {
setTimeout(() => {
this.getRequestList()
}, 1000)
}, 1000)
this.snackBar.open('Assigned submitted Successfully')
} else {
// this.snackBar.open('error')
Expand All @@ -285,7 +285,7 @@ export class RequestListComponent implements OnInit {
if (_res && _res.data === 'confirmed') {
setTimeout(() => {
this.getRequestList()
}, 1000)
}, 1000)

this.snackBar.open('Re-assign submitted Successfully')
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class DesignationsComponent implements OnInit {
} else {
setTimeout(() => {
this.getOrgReadData()
}, 10000)
}, 10000)
}
// console.log('orgFramework Details', res)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class DesignationsService {
frameworkId,
categoryId,
categoryTermCode
)}`, reguestBody)
)}`, reguestBody)
}

publishFramework(frameworkName: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class OdcsMappingComponent implements OnInit {
callResizeEvent(_event: any) {
setTimeout(() => {
window.dispatchEvent(new Event('resize'))
}, 100)
}, 100)
}

createFreamwork() {
Expand All @@ -79,7 +79,7 @@ export class OdcsMappingComponent implements OnInit {
} else {
setTimeout(() => {
this.getOrgReadData()
}, 10000)
}, 10000)
}
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import * as fileSaver from 'file-saver'

const API_ENDPOINTS = {
// bulkUpload: `/apis/proxies/v8/user/v1/bulkupload`,
bulkUpload: `/apis/proxies/v8/user/v2/bulkupload`, //csv support
bulkUpload: `/apis/proxies/v8/user/v2/bulkupload`, // csv support
downloadReport: `/apis/protected/v8/admin/userRegistration/bulkUploadReport`,
getBulkUploadData: '/apis/proxies/v8/user/v1/bulkupload',
getBulkApproval: '/apis/proxies/v8/workflow/admin/bulkupdate/getstatus',
// bulkApprovalUpload: `/apis/proxies/v8/workflow/admin/transition/bulkupdate`,
bulkApprovalUpload: '/apis/proxies/v8/workflow/admin/v2/bulkupdate/transition', //csv support
bulkApprovalUpload: '/apis/proxies/v8/workflow/admin/v2/bulkupdate/transition', // csv support
}

@Injectable()
Expand Down

0 comments on commit bf0c383

Please sign in to comment.