guides-source icon indicating copy to clipboard operation
guides-source copied to clipboard

This repository contains the Ember.js Guides

Results 185 guides-source issues
Sort by recently updated
recently updated
newest added

Is it a make sense? we could put logic into `utils/linter.js` In addition, we could run `ember-template-lint` on `hbs` parts.

The task is to take the changes done in https://github.com/ember-learn/guides-source/issues/1721 and backport them to previous versions until v3.26. This should only be done once the original issue has been completely...

| Stage | Start Date | Release Date | Release Versions | | Relevant Team(s) | RFC PR | | :---: | :--------: | :----------: | :--------------: | --- |...

In the [Native Classes In-Depth](https://github.com/ember-learn/guides-source/blob/master/guides/release/in-depth-topics/native-classes-in-depth.md) part of the guides it says: > Ember provides a number of decorators, such as the `@tracked` decorator, that will be described in greater detail...

help wanted
good first issue

In the Super Rental tutorial, [Part 1, Interactive Components](https://guides.emberjs.com/release/tutorial/part-1/interactive-components/#toc_testing-user-interactions) it is suggested that this code ```hbs {{#if this.isLarge}} View Smaller {{else}} View Larger {{/if}} ``` be refactored into this code...

https://github.com/ember-learn/guides-source/blob/master/guides/release/configuring-ember/disabling-prototype-extensions.md https://guides.emberjs.com/release/configuring-ember/disabling-prototype-extensions/ Prototype extensions have largely been phased out of Octane patterns, so this is a good time to rethink how we document them (if at all). Potentially Related: https://github.com/ember-learn/guides-source/issues/1539

The current [Contextual Components section in the guides](https://guides.emberjs.com/release/in-depth-topics/patterns-for-components/#toc_contextual-components) is a little bit lacking and doesn't explain how contextual components are being used in the wider Ember community. We have discussed...

## Background - [Learning Team meeting notes from August 20, 2020](https://github.com/emberjs/core-notes/blob/master/learning-team/2020-08/2020-08-20.md#ember-arrays-vs-native-arrays) - [A Discord conversation](https://discordapp.com/channels/480462759797063690/480777444203429888/741663906245771294) ## Description We currently don't describe well how to update tracked arrays and objects in...

enhancement
help wanted
Octane

In https://guides.emberjs.com/release/in-depth-topics/autotracking-in-depth/ I'm not sure what this means: > Note that we can use the get method to access the cache, and it will still push the _cache tracked property....

help wanted

Code like the following will trigger a backtracking rerender assertion: ```js function updateValue(component, value) { } export default class MyComponent extends Component { @tracked value; _previousValue; constructor(owner, args) { super(...arguments);...