for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import template from './sw-ai-copilot-warning.html.twig';
import './sw-ai-copilot-warning.scss';
/**
* @package admin
* @private
*/
export default Shopware.Component.wrapComponentConfig({
template,
props: {
text: {
type: String,
required: false,
default: '',
},
computed: {
warningText(): string {
return this.text || this.$tc('sw-ai-copilot-warning.text');
});