Michal Bryxí

Results 71 issues of Michal Bryxí

When I try to click links that I'm touching in this PR on the page: https://api.emberjs.com/ember-data/4.6/classes/Store I will get to: https://api.emberjs.com/ember-data/4.6/methods/createRecord?anchor=createRecord which fails with: `Cannot GET /ember-data/4.6/methods/createRecord`. etc. I'm not...

:dart: canary
:label: doc
good-first-issue

On [this line in the docs](https://github.com/LevelbossMike/ember-statecharts/blob/master/site/app/docs/statecharts.md?plain=1#L192) we see following example: ```js import { createMachine } from 'xstate'; const buttonMachine = createMachine( { initial: 'idle', states: { idle: { on: {...

## Description - In previous version we fixed the code for FireFox that can now work in FireFox which has different `.toString()` implementation - This change should make it more...

:dart: canary
:label: chore

This really goes to the weirdness of how [datetime-local](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/datetime-local) works, but _maybe_ internal wiring to make it work out-of the box would be a good idea. ## The problem Following...

Type: Question

My original goal was to simply tell `` that it's supposed to be different color (background and text) than the default. I know that I can tell it to `@appearance="custom"`...

Type: Documentation

`requestPostData` property is set together with setting `options` property in [`init()` function](https://github.com/Wildhoney/EmberDroplet/blob/e03eaa2c9da84c19e9dc2409575d04353de714f7/components/Droplet.js#L272). This makes it complicated to have `requestPostData` as computed property. Following code does not work: ``` js export...

Setting up `eslint-plugin-ember-suave` together with [prettier](https://github.com/prettier/prettier) that might need to be run through [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) for CI integration might be a pretty tricky thing. Typical symptoms include vscode auto-formatting the document...

Supported format: - Array of strings - Concatenated string - Multiple arguments

I tried to define custom element that inherits faltest `Element`: ```js const { Element: _Element } = require('@faltest/page-objects'); class Element extends _Element { async foo() { await super.click(); await ...;...