mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 22:14:58 +08:00
19 lines
524 B
Text
19 lines
524 B
Text
import Component from "@ember/component";
|
|
import { classNames, tagName } from "@ember-decorators/component";
|
|
import AdminReportTableCell from "admin/components/admin-report-table-cell";
|
|
|
|
@tagName("tr")
|
|
@classNames("admin-report-table-row")
|
|
export default class AdminReportTableRow extends Component {
|
|
options = null;
|
|
|
|
<template>
|
|
{{#each this.labels as |label|}}
|
|
<AdminReportTableCell
|
|
@label={{label}}
|
|
@data={{this.data}}
|
|
@options={{this.options}}
|
|
/>
|
|
{{/each}}
|
|
</template>
|
|
}
|