mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
various bug fixes (#1010)
* various bug fixes * use 'remove favorite' label where appropriate * fix toggle favorite component labels * e2e type check and fixes * favorite library label * support toggle favorite component selectors * update tests * update e2e tests * update e2e * e2e update * update e2e
This commit is contained in:
@@ -69,7 +69,9 @@ export class AosEditOnlineService {
|
||||
|
||||
private triggerEditOnlineAos(node: MinimalNodeEntryEntity): void {
|
||||
const aosHost = this.appConfigService.get('aosHost');
|
||||
const url = `${aosHost}/_aos_nodeid/${node.id}/${node.name}`;
|
||||
const url = `${aosHost}/_aos_nodeid/${node.id}/${encodeURIComponent(
|
||||
node.name
|
||||
)}`;
|
||||
const fileExtension = getFileExtension(node.name);
|
||||
const protocolHandler = this.getProtocolForFileExtension(fileExtension);
|
||||
|
||||
|
Reference in New Issue
Block a user