mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 19:35:41 +03:00
This is mostly a direct application of the ember-angle-brackets-codemod. I manually restored newlines in multi-line component invocations, usually preserving file line length except for now-non-positional link-to @route. I needed to rename task to taskState in some cases to avoid Ember Concurrency naming conflicts.
9 lines
136 B
JavaScript
9 lines
136 B
JavaScript
import Component from '@ember/component';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
|
|
allocation: null,
|
|
taskState: null,
|
|
});
|