1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

Fix pills for CIDER too

This commit is contained in:
Travis Ralston
2019-09-30 20:37:24 -06:00
parent 2824f468d9
commit ce0a534db1
6 changed files with 27 additions and 7 deletions

View File

@@ -43,6 +43,10 @@ export default class SpecPermalinkConstructor extends PermalinkConstructor {
return `${baseUrl}/#/${groupId}`;
}
forEntity(entityId: string): string {
return `${baseUrl}/#/${entityId}`;
}
isPermalinkHost(testHost: string): boolean {
return testHost === host;
}