mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 07:43:38 +08:00
9 lines
282 B
JavaScript
9 lines
282 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-ip-addresses-list-item"})
|
|
});
|