Valid Platform-App-Builder Dumps shared by ExamDiscuss.com for Helping Passing Platform-App-Builder Exam! ExamDiscuss.com now offer the newest Platform-App-Builder exam dumps, the ExamDiscuss.com Platform-App-Builder exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Platform-App-Builder dumps with Test Engine here:
An app builder has a custom component they want to make available on the utility bar, but the component is unavailable. How should the component be tagged?
Correct Answer: C
To make a custom component available for the utility bar in Salesforce, the component needs to be explicitly tagged for use in the utility bar. Salesforce components require specific configurations to be available in different parts of the application, such as the utility bar, record pages, or app pages. * Option C: For use on the utility bar: When a custom Lightning component is developed, it must include a specific target tag in its .js-meta.xml configuration file that marks it as usable in the utility bar. This is done by setting the target to "lightning__UtilityBar". Without this tag, the component will not appear as an option to add to the utility bar in the App Manager. * Example of how the component is tagged in the meta.xml file: xml Copy code <targets> <target>lightning__UtilityBar</target> </targets>