62589: Feedback improvements and fixes

This commit is contained in:
Kristof De Langhe
2019-09-27 16:40:47 +02:00
parent f83e31a1a2
commit 145ed346c8
10 changed files with 94 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
import { Component} from '@angular/core';
import { Component, Input } from '@angular/core';
import { Item } from '../../../core/shared/item.model';
import { ObjectSelectService } from '../object-select.service';
import { ObjectSelectComponent } from '../object-select/object-select.component';
@@ -14,6 +14,12 @@ import { isNotEmpty } from '../../empty.util';
*/
export class ItemSelectComponent extends ObjectSelectComponent<Item> {
/**
* Whether or not to hide the collection column
*/
@Input()
hideCollection = false;
constructor(protected objectSelectService: ObjectSelectService) {
super(objectSelectService);
}