Browse Source

PM-27883-Defect-Windows-Edge-browser-importer-is-not-enabled (#17260)

* remove edge from unsupported browser list

* Clarify comment for CSV import handling

Updated comment to clarify supported browsers for CSV imports.

(cherry picked from commit 5e094c6066)
inline-menu-test-from-browser-rc-branch
John Harrington 1 month ago committed by Hinton
parent
commit
4463ae2d9f
No known key found for this signature in database
GPG Key ID: 5F7295599C5D965C
  1. 4
      libs/importer/src/services/default-import-metadata.service.ts

4
libs/importer/src/services/default-import-metadata.service.ts

@ -69,8 +69,8 @@ export class DefaultImportMetadataService implements ImportMetadataServiceAbstra @@ -69,8 +69,8 @@ export class DefaultImportMetadataService implements ImportMetadataServiceAbstra
return loaders;
}
// Special handling for Brave, Chrome, and Edge CSV imports on Windows Desktop
if (type === "bravecsv" || type === "chromecsv" || type === "edgecsv") {
// Special handling for Brave and Chrome CSV imports on Windows Desktop
if (type === "bravecsv" || type === "chromecsv") {
try {
const device = this.system.environment.getDevice();
const isWindowsDesktop = device === DeviceType.WindowsDesktop;

Loading…
Cancel
Save