Skip to content

Commit

Permalink
[FIX] website_event_track: fix kanban state position on form view
Browse files Browse the repository at this point in the history
Before this commit, the `kanban_state` field on the form view was not
positioned correctly in community edition, making it impossible to read
possible values. This commit fixes that by ensuring it is on the right.

Due to some CSS differences enterprise was not affected.

Fixes #38567

X-original-commit: 2f89951
  • Loading branch information
sswapnesh authored and tde-banana-odoo committed Mar 25, 2020
1 parent e4ebd3e commit 3516698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/website_event_track/views/event_track_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<field name="is_published" widget="website_redirect_button"/>
</div>
<widget name="web_ribbon" text="Archived" bg_color="bg-danger" attrs="{'invisible': [('active', '=', True)]}"/>
<field name="kanban_state" widget="state_selection" class="ml-3"/>
<field name="kanban_state" widget="state_selection" class="ml-3 float-right"/>
<field name="image" widget="image" class="oe_avatar"/>
<div class="oe_title">
<label for="name" class="oe_edit_only"/>
Expand Down

0 comments on commit 3516698

Please sign in to comment.