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-common/helpers/html-safe.js
T
2020-03-23 15:05:58 -04:00

7 lines
188 B
JavaScript

import { registerUnbound } from "discourse-common/lib/helpers";
import { htmlSafe } from "@ember/template";
registerUnbound("html-safe", function(string) {
return htmlSafe(string);
});