mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
Cache redesign part 1, and add support for alternative links
This commit is contained in:
@@ -46,7 +46,7 @@ export class RemoveFromIndexByValueAction implements Action {
|
||||
type = IndexActionTypes.REMOVE_BY_VALUE;
|
||||
payload: {
|
||||
name: IndexName,
|
||||
value: string
|
||||
value: any
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -57,7 +57,7 @@ export class RemoveFromIndexByValueAction implements Action {
|
||||
* @param value
|
||||
* the value to remove the UUID for
|
||||
*/
|
||||
constructor(name: IndexName, value: string) {
|
||||
constructor(name: IndexName, value: any) {
|
||||
this.payload = { name, value };
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user