mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 08:33:11 +00:00
fix: performance degradation when scrolling
This commit is contained in:
@@ -25,12 +25,17 @@ import {DataRoutingService} from '../data-routing.service';
|
||||
templateUrl: 'data-list-item.html',
|
||||
})
|
||||
export class DataListItem {
|
||||
/**
|
||||
* Whether or not the list item should show a thumbnail
|
||||
*/
|
||||
@Input() hideThumbnail = false;
|
||||
|
||||
/**
|
||||
* An item to show
|
||||
*/
|
||||
@Input() item: SCThings;
|
||||
|
||||
constructor(private dataRoutingService: DataRoutingService) {}
|
||||
constructor(private readonly dataRoutingService: DataRoutingService) {}
|
||||
|
||||
/**
|
||||
* Emit event that an item was selected
|
||||
|
||||
Reference in New Issue
Block a user