We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c9cca3 commit d833981Copy full SHA for d833981
src/shared/metadataKeys.ts
@@ -10,7 +10,7 @@ import { getMetadataKey } from './remoteSourceTrackingService';
10
// LWC can have child folders (ex: dynamic templates like /templates/noDataIllustration.html
11
const pathAfterFullName = (fileResponse: RemoteSyncInput): string =>
12
fileResponse && fileResponse.filePath
13
- ? fileResponse.filePath.substr(fileResponse.filePath.indexOf(fileResponse.fullName)).replace('\\', '/')
+ ? fileResponse.filePath.substr(fileResponse.filePath.indexOf(fileResponse.fullName)).replace(/\\/gi, '/')
14
: '';
15
16
// handle all "weird" type/name translation between SourceMember and SDR FileResponse
0 commit comments