mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
Modify font-regex and declare json type
This commit is contained in:
parent
3efa699b88
commit
5dbc103486
@ -25,7 +25,7 @@ import { EventType } from "matrix-js-sdk/src/@types/event";
|
||||
|
||||
export default class JSONExporter extends Exporter {
|
||||
protected totalSize = 0;
|
||||
protected messages: any[] = [];
|
||||
protected messages: Record<string, any>[] = [];
|
||||
|
||||
constructor(
|
||||
room: Room,
|
||||
|
@ -36,7 +36,7 @@ const getExportCSS = async (): Promise<string> => {
|
||||
|
||||
CSS = CSS.replace(fontFaceRegex, '');
|
||||
CSS = CSS.replace(
|
||||
/font-family: Inter/g,
|
||||
/font-family: (Inter|'Inter')/g,
|
||||
`font-family: -apple-system, BlinkMacSystemFont, avenir next,
|
||||
avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif`,
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user