Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit af2cda3

Browse files
ksheedloIgorMinar
authored andcommitted
fix(docs/error): make minerr ids searchable
Closes #3513
1 parent 4f5dfbc commit af2cda3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/src/ngdoc.js

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ Doc.prototype = {
112112
this.methods.forEach(function(method) {
113113
extractWords(method.text || method.description || '');
114114
});
115+
if (this.ngdoc === 'error') {
116+
words.push(this.getMinerrNamespace());
117+
words.push(this.getMinerrCode());
118+
}
115119
words.sort();
116120
return words.join(' ');
117121
},

0 commit comments

Comments
 (0)