mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 04:23:43 +08:00
DEV: Allow auth errors to render HTML (#26686)
This commit is contained in:
parent
1deeff2336
commit
239eac7799
|
@ -1,5 +1,6 @@
|
||||||
import EmberObject from "@ember/object";
|
import EmberObject from "@ember/object";
|
||||||
import { next } from "@ember/runloop";
|
import { next } from "@ember/runloop";
|
||||||
|
import { htmlSafe } from "@ember/template";
|
||||||
import CreateAccount from "discourse/components/modal/create-account";
|
import CreateAccount from "discourse/components/modal/create-account";
|
||||||
import LoginModal from "discourse/components/modal/login";
|
import LoginModal from "discourse/components/modal/login";
|
||||||
import cookie, { removeCookie } from "discourse/lib/cookie";
|
import cookie, { removeCookie } from "discourse/lib/cookie";
|
||||||
|
@ -90,7 +91,7 @@ export default {
|
||||||
for (let i = 0; i < AuthErrors.length; i++) {
|
for (let i = 0; i < AuthErrors.length; i++) {
|
||||||
const cond = AuthErrors[i];
|
const cond = AuthErrors[i];
|
||||||
if (options[cond]) {
|
if (options[cond]) {
|
||||||
return loginError(I18n.t(`login.${cond}`));
|
return loginError(htmlSafe(I18n.t(`login.${cond}`)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user