feat: add another FooterSlot id alias (#523)

This commit is contained in:
Brian Smith
2025-04-24 13:53:20 -04:00
committed by GitHub
parent b2c55a09e5
commit 3a9e3f8fba

View File

@@ -3,7 +3,10 @@ import { PluginSlot } from '@openedx/frontend-plugin-framework';
import Footer from '../../components/Footer';
const FooterSlot = () => (
<PluginSlot id="org.openedx.frontend.layout.footer.v1" idAliases={['footer_slot']}>
<PluginSlot
id="org.openedx.frontend.layout.footer.v1"
idAliases={['footer_slot', 'footer_plugin_slot']}
>
<Footer />
</PluginSlot>
);