We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
data-test-crate-row
1 parent f1ae622 commit 7fbec76Copy full SHA for 7fbec76
app/components/crate-row.js
@@ -6,6 +6,4 @@ export default Component.extend({
6
crateTomlText: computed('crate.name', 'max_version', function() {
7
return `${this.get('crate.name')} = "${this.get('crate.max_version')}"`;
8
}),
9
-
10
- 'data-test-crate-row': true,
11
});
app/templates/components/crate-row.hbs
@@ -1,4 +1,4 @@
1
-<div class="crate row" ...attributes>
+<div class="crate row" data-test-crate-row ...attributes>
2
<div class='desc'>
3
<div class='info'>
4
<LinkTo @route="crate" @model={{this.crate.id}} data-test-crate-link>{{ this.crate.name }}</LinkTo>
0 commit comments