Anselm McClain
Anselm McClain
http://docs.grails.org/3.3.x/guide/conf.html#logging Without the grails-logging plugin, Grails artifacts do not get a log property auto-injected as the docs state. Instead, you would need to annotate your classes manually with the `@Slf4j`...
We have been troubleshooting n+1 query behavior resulting from a simple association between two domain objects. We believe this should be prevented by specifying a `fetch: 'join'` mapping on the...
If you are browsing the Admin Console and lose your connection to the server - e.g. across a restart - the current handling is extremely scattershot. Each tab or sub-tab...
When bound to a `GridModel`, SFF defaults to only including visible columns in its search: https://github.com/xh/hoist-react/blob/8f97a34e8c9d3ecf2557843e6e3b43243c780c86/cmp/store/impl/StoreFilterFieldImplModel.ts#L164 This is a good default for normal grids, but does not play well with...
Tracking ticket for potential support in Hoist for "native" style notifications on desktop and potentially mobile. See https://web.dev/explore/notifications for a nice overview of this entire system / ecosystem. Note that...
Should be trivial, looks like AG Grid supports, we just aren't pulling through our class and throw as unexpected key
See https://github.com/mobxjs/mobx/pull/3727 - wondering if this could support a simpler implementation of our reaction disposition code?
Most notably font-size, padding, default bg color, maybe some of the sizing constraints - via a small set of `--xh-badge-...` vars.
Unintentional doubled-up loads are an easy problem to create with competing reactions, debounces, and automatic load-on-mount for linked models, and they can be tricky to catch as if you're not...
When adding multiple eq filters on the same field, we implicitly OR them together (as otherwise you would never get any results): However if you then attempt to add another...