mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
import ListView from 'ember-addons/list-view';
|
|
import ListItemView from 'ember-addons/list-item-view';
|
|
|
|
export default ListView.extend({
|
|
height: 700,
|
|
rowHeight: 75,
|
|
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/staff-action-logs-list-item"})
|
|
});
|