mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 06:23:03 +00:00
solved issues with radiobuttons
This commit is contained in:
@@ -40,12 +40,11 @@ export class SelectableListSelectAction extends SelectableListAction {
|
||||
export class SelectableListSelectSingleAction extends SelectableListAction {
|
||||
payload: {
|
||||
object: ListableObject,
|
||||
multipleSelectionsAllowed: boolean
|
||||
};
|
||||
|
||||
constructor(id: string, object: ListableObject, multipleSelectionsAllowed: boolean = true) {
|
||||
constructor(id: string, object: ListableObject) {
|
||||
super(SelectableListActionTypes.SELECT_SINGLE, id);
|
||||
this.payload = { object, multipleSelectionsAllowed };
|
||||
this.payload = { object };
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user