Files
design-themes/theme_paptic/data/ir_asset.xml
T
qsm-odoo 645d973189 [FIX] theme_cobalt, theme_paptic: restore proper asset order
Error made during migration of assets, those files became prepend to
the bundle instead of append to... hopefully these are the only ones.

Part of https://github.com/odoo/design-themes/pull/2
task-2491890
2021-06-03 09:54:47 +00:00

22 lines
937 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="theme_paptic.primary_variables_scss" model="theme.ir.asset">
<field name="key">theme_paptic.primary_variables_scss</field>
<field name="name">Primary variables SCSS</field>
<field name="bundle">web._assets_primary_variables</field>
<field name="glob">theme_paptic/static/src/scss/primary_variables.scss</field>
</record>
<record id="theme_paptic.bootstrap_overridden_scss" model="theme.ir.asset">
<field name="key">theme_paptic.bootstrap_overridden_scss</field>
<field name="name">Bootstrap overridden SCSS</field>
<field name="bundle">web._assets_frontend_helpers</field>
<field name="directive">prepend</field>
<field name="glob">theme_paptic/static/src/scss/bootstrap_overridden.scss</field>
</record>
</data>
</odoo>