mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
import ListView from 'ember-addons/list-view';
|
|
import ListItemView from 'ember-addons/list-item-view';
|
|
|
|
export default ListView.extend({
|
|
height: 700,
|
|
rowHeight: 32,
|
|
itemViewClass: ListItemView.extend({templateName: "admin/templates/logs/screened-urls-list-item"})
|
|
});
|