Fix initialization of url for loader

This commit is contained in:
Paulo Gustavo Veiga 2022-02-25 09:09:03 -08:00
parent 1ae22652df
commit 0e8befc00c

View File

@ -626,7 +626,7 @@ export default class RestClient implements Client {
});
} else {
persistence = new LocalStorageManager(
`/c/restful/maps/{id}/${global.historyId ? `${global.historyId}/` : ''}document/xml${editorMode !== 'showcase' ? '-pub' : ''
`/c/restful/maps/{id}/${global.historyId ? `${global.historyId}/` : ''}document/xml${editorMode === 'showcase' ? '-pub' : ''
}`,
true
);