Jakub Łukomski
Jakub Łukomski
This works with just friendly_id: ``` ruby class Entry < ActiveRecord::Base include FriendlyId friendly_id :name, use: :slugged end entry = Entry.create! name: 'foo bar', slug: nil # entry.slug == 'foo-bar'...
To achieve the bug, following must be met: - assignment to a variable (or as a parameter in a function call) - right side must be an object - on...
`core-ui` still exists as a folder when creating a docker image for backwards compatibility reasons. it should be renamed to something more generic, such as `frontend` or `busola` or some...
Allow wizard steps to be hidden based on a jsonata expression. All the available variables should be present, and if given step has a resource connected (for now all of...
Support assigning ids to widgets and referencing them in other widgets. Consider the format: 1. string - `namespace/name/id` eg. `ref: kube-public/qqqs/foo` (could fall back to just `id` if within the...
It's currently impossible to place to form widgets with the same `path` side by side in extensions. A separator widget (for example a var without a type - which causes...
- add a list of wizards in extensions - create a wizard schema - add a create/edit option for the wizard
Convert all existing extensions not to use the `translations` section, and instead use human-readable strings within the definitions themselves.
Get rid of the `Resource`/`ResourceRef` split and keep only one component, or even consider removing them altogether (but it might be beneficial to have some extra support such as `provideVar`...
Add support for data sources in `Resource` and `ResourceRef` components instead of providing the resource data inline. Remove the old options from docs, but keep them in code for backwards...