Andrey Tretyakov
Andrey Tretyakov
There's a mention in TODO: > NEW FEATURES: > - input_prepend/input_append in mapping_item widget I would ignore it if it wasn't implemented, but there's some support for it in the...
### Introduction Django's `field.pre_save()` allows fields to auto-provide 2 different values: 1 for `insert`, and 1 for `update`. There is no requirement of what these values are: they could be...
Need to evaluate the option of using UUID primary key everywhere.
I see no sign of locking here. Session is a shared resource. To avoid losing data and to have predictable results, concurrency control is needed. In the case of Redis...
In the README you mention > Solid.render/3 doesn't raise or return errors unless strict_variables: true or strict_filters: true are passed as options. But the function doc doesn't mention it. IMO,...
```Elixir defmodule Parser do use Solid.Parser.Base, excluded_tags: [ Solid.Tag.Break, Solid.Tag.Continue, Solid.Tag.Counter, Solid.Tag.Comment, Solid.Tag.Assign, Solid.Tag.Capture, #Solid.Tag.If, Solid.Tag.Case, Solid.Tag.For, Solid.Tag.Raw, Solid.Tag.Cycle, Solid.Tag.Render ] end ``` gives the following error: `** (FunctionClauseError) no...
With this change the library will allow declaring non-standard exchange types, such as provided by plugins. ## Description Currently there's no way to define non-standard exchange type. AMQP library allows...
**Describe the bug** Popover currently doesn't support passing arrow padding option, which is natively supported in popper 2.x **To Reproduce** If you look at https://flowbite.com/docs/components/popover/#description-popover The arrow there only looks...
The current implementation is naive - its assuming that DB state is equal to loaded (runtime) state. A correct implementation would need to assure that with some form of locking....
### Use case When there are no query string params, `app.current_event.query_string_parameters` is `None` which is unexpected. ### Solution/User Experience Proper solution is to make it to behave like an empty...