Merge branch 'master' into bugfix/nan

This commit is contained in:
Ilfat Galiev 2021-08-31 14:46:30 +03:00 коммит произвёл GitHub
Родитель b66a9b6c11 659bdaa1d2
Коммит 771477b277
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -380,7 +380,9 @@ export class MenuBar extends ContextedComponent<
const inputElement = document.createElement("input");
inputElement.type = "file";
let file = null;
inputElement.accept = ["tmplt"].map((x) => "." + x).join(",");
inputElement.accept = ["tmplt", "json"]
.map((x) => "." + x)
.join(",");
// eslint-disable-next-line
inputElement.onchange = () => {
if (inputElement.files.length == 1) {

Просмотреть файл

@ -1443,7 +1443,7 @@ export class FluentUIWidgetManager
<ButtonRaised
text="Import Template..."
onClick={async () => {
const file = await showOpenFileDialog(["tmplt"]);
const file = await showOpenFileDialog(["tmplt", "json"]);
const str = await readFileAsString(file);
const data = JSON.parse(str);
const template = new ChartTemplate(data);

Просмотреть файл

@ -1120,7 +1120,7 @@ export class WidgetManager
<ButtonRaised
text="Import Template..."
onClick={async () => {
const file = await showOpenFileDialog(["tmplt"]);
const file = await showOpenFileDialog(["tmplt", "json"]);
const str = await readFileAsString(file);
const data = JSON.parse(str);
const template = new ChartTemplate(data);