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

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."
);
}
});