mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-28 01:20:07 +00:00
Merge "search: Add option to disable highlighting query"
This commit is contained in:
commit
a15fd2eb80
|
@ -16,6 +16,7 @@
|
|||
:search-language="language"
|
||||
:show-thumbnail="showThumbnail"
|
||||
:show-description="showDescription"
|
||||
:highlight-query="highlightQuery"
|
||||
@fetch-start="instrumentation.onFetchStart"
|
||||
@fetch-end="instrumentation.onFetchEnd"
|
||||
@suggestion-click="instrumentation.onSuggestionClick"
|
||||
|
@ -107,6 +108,10 @@ module.exports = {
|
|||
showDescription: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
highlightQuery: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
}
|
||||
},
|
||||
data: function () {
|
||||
|
|
Loading…
Reference in a new issue