matias
matias
I'm having a similar issue. Everything works well except the ```:with_type``` checkboxes. Am I missing anything? Model ```ruby filterrific( default_filter_params: { sorted_by: 'name_asc' }, available_filters: [ :sorted_by, :search_query, :with_type ]...
Solved my issue. Used the latest github version to allow multiple inputs. ```{multiple: true}``` was breaking it. ```ruby gem 'filterrific', git: 'https://github.com/ayaman/filterrific.git' ```
What do you mean by single input filter? A single checkbox? I'll help you out if show me the code or the error you're getting in the logs.
I'm getting the following error when using `unstable` or `beta` versions. Only working on `stable` for me. I'm on `heroku-18`. ``` /app/.apt/opt/google/chrome-unstable/chrome: error while loading shared libraries: libxcb-dri3.so.0: cannot open...
I've got an idea, but not sure if it's good. This syntax is **SO** close to being C compatible that I would just drop the `@` for ATtributes and use...
Yeah, that should probably show a warning at build-time. I think that's what C compilers do, e.g. Warning C6011. Obligatory: https://www.youtube.com/watch?v=bLHL75H_VEM
I feel like there’s a subset of this compile-time check that can be done very cheaply. If it’s too expensive, there’s always the alternative of placing it behind a compiler...
Yeah, I would close it. Solving it would involve doing redundant work since the debugger is already catching it for you. As far as I can tell, Odin is a...
@Tetralux Couldn't this particular case be caught by looking at the AST? If Odin (or user) ZIIs the pointer, then can it know it is still set to zero when...