No MODULE found in LWC
See original GitHub issueWho is the bug affecting?
All Supervisors
What is affected by this bug?
Unable to include any LWCC chart in a LWC.
When does this occur?
Every time I attempt to deploy my LWC containing LWCC markup: `
<!-- card body -->
<div class="slds-grid">
<!-- sum of hours per hour block chart -->
<div class="slds-col slds-size_1-of-1 slds-large-size_6-of-12">
<!--<c-chart type="bar" responsive="true">
<c-dataset labels={chartLabels}>
<c-data label="Sum of Hours Scheduled" detail={hours} borderwidth="1"></c-data>
</c-dataset>
<c-title text="Hours per Hour Block"></c-title>
<c-legend position="bottom"></c-legend>
<c-cartesian-axis axis="x"></c-cartesian-axis>
<c-cartesian-axis axis="y"></c-cartesian-axis>
</c-chart>-->
<c-chart type="bar">
<c-title text="TEST"></c-title>
<c-legend position="bottom"></c-legend>
</c-chart>
</div>
<!-- number of assignments per hour block chart -->
<div class="slds-col slds-size_1-of-1 slds-large-size_6-of-12">
</div>
</div>
`
Where on the platform does it happen?
I’m attempting to deploy a component that will be shown on a Lightning App Page
How do we replicate the issue?
- Install the LWCC package in a sandbox
- Create a Lightning Web Component (LWC)
- Add simple LWCC Markup to the LWC:
<c-chart type="bar"> <c-title text="TEST"></c-title> <c-legend position="bottom"></c-legend> </c-chart>
Expected behavior (i.e. solution)
The component should deploy to the sandbox with the LWCC markup
Other Comments
I may be missing something very simple, but I am not sure what. Please advise.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8
Top Results From Across the Web
No MODULE named markup://c:errorPanel found : [markup://c ...
errorPanel component is one of the components from the LWC Recipes repository. If you get this error, it means, that you have not...
Read more >No MODULE named markup://c:list found : [markup://c:selector]
It looks like yopu have a tag in your html file that references a "seclector" that is not defined to your org. I...
Read more >No MODULE named markup://lgc:bg found - Stack Overflow
When I try to deploy to my org using VSCode I'm getting the below error. Error. force-app\main\default\lwc\accountManagerApex\accountManagerApex ...
Read more >Salesforce: No MODULE named markup://c:errorPanel found
Salesforce: No MODULE named markup://c:errorPanel found : [markup://c:contactComponent]Helpful? Please support me on Patreon: ...
Read more >Salesforce: No MODULE named markup://c:pubsub found in lwc
Salesforce: No MODULE named markup://c:pubsub found in lwcHelpful? Please support me on Patreon: https://www.patreon.com/roelvandepaarWith ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
“we’re reviewing also the possibility to transform this managed package into unmanaged” That would be very much appreciated! Or split this module in two – a managed side for the Admin LWCC and an unmanaged for custom dev.
Thanks @victorgz - I’ll see about cloning the repository and using the regular namespace. I appreciate you looking into this for me.