fixes for Chromium 56 (Qt 5.9)

This commit is contained in:
Damien Elmes 2020-06-29 13:46:13 +10:00
parent f30e52c4ed
commit 4cc9e2a780
3 changed files with 4 additions and 2 deletions

View file

@ -57,6 +57,7 @@
"d3-selection": "^1.4.1", "d3-selection": "^1.4.1",
"d3-shape": "^1.3.7", "d3-shape": "^1.3.7",
"d3-transition": "^1.3.2", "d3-transition": "^1.3.2",
"intl-pluralrules": "^1.2.0",
"lodash.debounce": "^4.0.8", "lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1", "lodash.throttle": "^4.1.1",
"protobufjs": "^6.9.0" "protobufjs": "^6.9.0"

View file

@ -2,7 +2,8 @@
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html // License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import pb from "./backend/proto"; import pb from "./backend/proto";
import { FluentBundle, FluentResource, FluentNumber } from "@fluent/bundle"; import "intl-pluralrules";
import { FluentBundle, FluentResource, FluentNumber } from "@fluent/bundle/compat";
type RecordVal = number | string | FluentNumber; type RecordVal = number | string | FluentNumber;

View file

@ -16,7 +16,7 @@
.counts-outer { .counts-outer {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-evenly; justify-content: space-around;
} }
</style> </style>