Modify font-regex and declare json type

pull/21833/head
Jaiwanth 2021-08-14 11:50:13 +05:30
parent 3efa699b88
commit 5dbc103486
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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`,
);