Skip to content

Commit b19e479

Browse files
author
Hofstetter Benjamin (extern)
committed
use enum and not string
1 parent 888b542 commit b19e479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/blueprint/src/app/core/service/config/config.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class ConfigService {
3131
environment.sparqlConsoleUrl = config?.sparqlConsoleUrl ?? null;
3232
environment.graphExplorerUrl = config?.graphExplorerUrl ?? null;
3333

34-
environment.fullTextSearchDialect = config?.fullTextSearchDialect ?? 'stardog';
34+
environment.fullTextSearchDialect = config?.fullTextSearchDialect ?? FullTextSearchDialect.STARDOG;
3535
console.log('ConfigService', config?.fullTextSearchDialect);
3636

3737
this._libraryConfigurationService.endpointUrl = environment.endpointUrl;

0 commit comments

Comments
 (0)