| | |
| | | import { ShowToastEvent } from 'lightning/platformShowToastEvent'; |
| | | import getUserIdByName from '@salesforce/apex/ReportController.getUserIdByName'; |
| | | import getProfileIdByName from '@salesforce/apex/ReportController.getProfileIdByName'; |
| | | import lwcCSS from '@salesforce/resourceUrl/lwcCSS'; |
| | | import {loadStyle} from 'lightning/platformResourceLoader'; |
| | | export default class LexVOCCheck extends LightningElement { |
| | | |
| | | @api recordId; |
| | |
| | | |
| | | |
| | | connectedCallback(){ |
| | | Promise.all([ |
| | | loadStyle(this, lwcCSS) |
| | | ]); |
| | | console.log(this.recordId); |
| | | init({ |
| | | recordId: this.recordId |