Géry Debongnie

Results 78 comments of Géry Debongnie

how do you check for the noticeable change? not with a debugger?

@seb-odoo fun fact: there is a css `transition` rule on the button: ```css transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; ``` in bootstrap.css... If...

I actually think that the correct way is to simply render the parent. This will ensure that each children are patched onscreen at the exact same time. Finding a way...

something like this, I guess: https://github.com/odoo/owl/pull/1134

how it could work: 1. create some generic (and private to owl) `` component: ```js class ErrorBoundary extends Component { static template = xml``; error = false; catchError(error) { this.error...

To solve that issue, I think the ErrorBoundary code should look into its parents to see if they implement catchError, and not do anything in that case. However, Owl currently...

hmm, they have a very similar API, I think I read that page when working on owl, so I suppose that this is no coincidence... Now, thinking about this, I...

Also, should be easy to switch in dev mode

@Zinston could you give me a short example to demonstrate this issue? I can't reproduce it

Dear @Yajo Thank you for your nice words. Regarding to your question, I suppose you are asking about the equivalent of the `.include` in odoo widgets? If that is indeed...