Kyle Luzny
Kyle Luzny
I ended up with this which makes a mini form: ``` ```
Few possible things, just an amateur myself here: The hypen behaviour is based on how PG is splitting up the words. PG uses dictionaries to define how to break up...
I have a similar issue: https://github.com/Casecommons/pg_search/issues/354 I think I might end up just using the raw sql, but it would seem that you also want to rank by exact matches,...
I made a ruby class you might find useful @choonggg: https://gist.github.com/kluzny/498e3a3bace43b0e44ce07add44a99fa Not as feature rich as the gem, but will likely solve your use case.
I think a short term solution would be to add to the docs `skip_callback(:save, :before, :ensure_authentication_token)` and a more permanent option would be to add a configuration option an register...
I think we should also couple a public API for manually generating a token. It appears that the current ensure_authentication_token only works if the token is nil, so you have...
https://github.com/kaivi/riek/blob/master/src/RIEStatefulBase.js#L86 What if we just did something like: ``` {...this.props.defaultProps}>{this.props.newValue || this.state.newValue || this.props.value}; ``` Then you could pass in a newValue into the component, allowing you to modify what...
Old thread, but for anyone in the future: I recommend you use v-cloak in the standard library https://v3.vuejs.org/api/directives.html#v-cloak It will prevent flicker on items before vue is initialized.
Here is what I'm doing: ``` ``` So on the show event, I flag isVisible to true, then I use that to render my content. You may want to add...
This just happened to me as well on `ruby 3.0.5p211 (2022-11-24 revision ba5cf0f7c5) [x86_64-linux]` Curiously, I only see this on recent docker image builds. I suspect the rexml is sitting...