-
-
Notifications
You must be signed in to change notification settings - Fork 406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[17.0][IMP] crm_lead_code: space get removed when other view changes name field #601
[17.0][IMP] crm_lead_code: space get removed when other view changes name field #601
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -48,7 +48,7 @@ | |||
<field name="inherit_id" ref="crm.crm_case_kanban_view_leads" /> | |||
<field name="arch" type="xml"> | |||
<field name="name" position="before"> | |||
<field name="code" />&nbsp; | |||
<field name="code" /><span> </span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, thanks for this PR.
IMHO <span/>
should be better
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<span/>
does not add the extra SPACE.
Or is there a css class which we could apply?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok found a solution: <span class="p-1" />
thank you for your feedback.
b687605
to
448b9f5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
Thanks, much better!
@pedrobaeza would you merge? |
This PR has the |
/ocabot merge minor |
This PR looks fantastic, let's merge it! |
Congratulations, your PR was merged at 5aca41d. Thanks a lot for contributing to OCA. ❤️ |
I have another module which extends the same view like this:
This causes that the space ( ) after the code field is somehow removed.
This change prevents this side effect.