Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit 2b343d3

Browse files
Merge pull request #529 from telerik/vladimirov/fix-unit-test-runner
List dev commands when searching help pages
2 parents ad92d5c + 656648b commit 2b343d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/html-help-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export class HtmlHelpService implements IHtmlHelpService {
103103
commandName = defaultCommandMatch[1];
104104
}
105105

106-
let availableCommands = this.$injector.getRegisteredCommandsNames(false).sort();
106+
let availableCommands = this.$injector.getRegisteredCommandsNames(true).sort();
107107
this.$logger.trace("List of registered commands: %s", availableCommands.join(", "));
108108
if(commandName && _.startsWith(commandName, this.$commandsServiceProvider.dynamicCommandsPrefix) && !_.contains(availableCommands, commandName)) {
109109
let dynamicCommands = this.$commandsServiceProvider.getDynamicCommands().wait();

0 commit comments

Comments
 (0)