mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 19:11:58 +08:00
DEV: Convert admin component definitions to native class syntax (#20311)
This conversion was achieved using the ember-native-class-codemod, plus a handful of manual fixes/tweaks
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import { classNames } from "@ember-decorators/component";
|
||||
import Component from "@ember/component";
|
||||
export default Component.extend({
|
||||
classNames: ["admin-report-inline-table"],
|
||||
});
|
||||
|
||||
@classNames("admin-report-inline-table")
|
||||
export default class AdminReportInlineTable extends Component {}
|
||||
|
Reference in New Issue
Block a user