Files
design-themes/theme_artists/views/snippets/s_opening_hours.xml
T
Xavier Luyckx (xlu) ff5c23e613 [FIX] theme_artists: s_opening_hours remove unnecessary xpath
With recent updates to the `s_opening_hours` snippet, an additional
xpath has become redundant in the context of this theme's revamp.

This commit removes the now unused xpath.

task-4207030
Part of task-4077427

closes odoo/design-themes#1004

Related: odoo/odoo#181170
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
2025-01-31 10:54:36 +00:00

17 lines
626 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_opening_hours" inherit_id="website.s_opening_hours">
<xpath expr="//div[hasclass('o_grid_item')][2]" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('o_grid_item')][3]" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('o_grid_item')][4]" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
</xpath>
</template>
</odoo>