Skip to content

Commit

Permalink
use enum and not string
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofstetter Benjamin (extern) committed Nov 14, 2024
1 parent 888b542 commit b19e479
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class ConfigService {
environment.sparqlConsoleUrl = config?.sparqlConsoleUrl ?? null;
environment.graphExplorerUrl = config?.graphExplorerUrl ?? null;

environment.fullTextSearchDialect = config?.fullTextSearchDialect ?? 'stardog';
environment.fullTextSearchDialect = config?.fullTextSearchDialect ?? FullTextSearchDialect.STARDOG;
console.log('ConfigService', config?.fullTextSearchDialect);

this._libraryConfigurationService.endpointUrl = environment.endpointUrl;
Expand Down

0 comments on commit b19e479

Please sign in to comment.