77472: Fix unclickable titles in search lists

This commit is contained in:
lotte
2021-03-16 16:46:58 +01:00
parent 66463cfc04
commit b833407dd1
44 changed files with 190 additions and 58 deletions

View File

@@ -0,0 +1,9 @@
import { DSpaceObject } from '../../core/shared/dspace-object.model';
export const UNDEFINED_NAME = 'Undefined';
export class DSONameServiceMock {
public getName(dso: DSpaceObject) {
return UNDEFINED_NAME;
}
}