This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/highlight-text.js

12 lines
328 B
JavaScript

import highlightSearch from "discourse/components/highlight-search";
import deprecated from "discourse-common/lib/deprecated";
export default highlightSearch.extend({
init() {
this._super(...arguments);
deprecated(
"`highlight-text` component is deprecated, use the `highlight-search` instead."
);
}
});