aki77
aki77
It's difficult because activestorage is closely related to activerecord.
It is a good idea. But I am busy so the priority is low. sorry.
Sorry. Pagination is not supported. https://developer.github.com/v3/#pagination
I am hoping this PR will be merged. I am having the same problem with a combination of [Ladle](https://ladle.dev/) and react-bootstrap.
The `click` event also trigger on mobile devices. https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event It works fine in my environment. This is a screencast confirmed to work on iOS devices in BrowserStack. 
@MaxLeiter Can you provide a minimal reproduction?
#311 PR has already addressed limiting the number of html views only.
Until the PRs are merged, I am using the following monkey patch. _app/controllers/blazer/queries_controller.rb_ ```ruby require Blazer::Engine.root.join('app/controllers/blazer/queries_controller.rb') module BlazerQueriesControllerExtention def render_run if request.format == :html && Blazer.settings['row_limit'] @row_limit ||= Blazer.settings['row_limit'] end...
@ankane What do you think about this PR? I'm having trouble with occasional server failures due to queries being executed with too many results. Even though I have set the...
I have taken the following workarounds. ```javascript // before Vue.customElement('slot-component', slotComponent); // after import { getProps } from 'vue-custom-element/src/utils/props' const asyncComponentDefinition = (component) => () => new Promise((resolve) => {...