mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 08:15:00 +00:00
FIX: Show preview of Arial/System font in wizard (#22486)
Followup to db80a8ce7959dfec9db1aec668939170037e9289 The previous commit broke previewing the Arial and System fonts (which do not have variant URLs to load).
This commit is contained in:
parent
3ea8203719
commit
ba53df5254
@ -87,6 +87,10 @@ export default Component.extend({
|
||||
const fontVariantData = this.fontMap[font.id];
|
||||
|
||||
// System font for example does not need to load from a remote source.
|
||||
if (!fontVariantData) {
|
||||
this.loadedFonts.add(font.id);
|
||||
}
|
||||
|
||||
if (fontVariantData && !this.loadedFonts.has(font.id)) {
|
||||
this.loadingFontVariants = true;
|
||||
const fontFaces = fontVariantData.map((fontVariant) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user