Skip to content

Commit 46e27b7

Browse files
baruchvlzMRHarrison
authored andcommitted
fix: change apiFilter querystring to query in ng doc(angular#3383)
* change URL query key name Close angular#3363
1 parent 3948aa1 commit 46e27b7

File tree

1 file changed

+1
-1
lines changed
  • packages/angular-cli/tasks

1 file changed

+1
-1
lines changed

packages/angular-cli/tasks/doc.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const opn = require('opn');
33

44
export const DocTask: any = Task.extend({
55
run: function(keyword: string) {
6-
const searchUrl = `https://angular.io/docs/ts/latest/api/#!?apiFilter=${keyword}`;
6+
const searchUrl = `https://angular.io/docs/ts/latest/api/#!?query=${keyword}`;
77
return opn(searchUrl, { wait: false });
88
}
99
});

0 commit comments

Comments
 (0)