Skip to content

Commit 23846f3

Browse files
Saby-BishopsMutugiiidogi
authored
manager: smoother reporting (fixes #9309) (#9256)
Co-authored-by: mutugiii <[email protected]> Co-authored-by: dogi <[email protected]>
1 parent 8ee314a commit 23846f3

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "planet",
33
"license": "AGPL-3.0",
4-
"version": "0.20.71",
4+
"version": "0.20.72",
55
"myplanet": {
6-
"latest": "v0.36.70",
7-
"min": "v0.35.70"
6+
"latest": "v0.36.78",
7+
"min": "v0.35.78"
88
},
99
"scripts": {
1010
"ng": "ng",

src/app/shared/chart-utils.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import type { Chart } from 'chart.js';
2-
31
type ChartJsModule = typeof import('chart.js');
42
type RegisterableKey = 'ArcElement' | 'BarController' | 'BarElement' | 'CategoryScale' | 'DoughnutController'
53
| 'Legend' | 'LinearScale' | 'Title' | 'Tooltip' | 'LineController' | 'PointElement' | 'LineElement';
@@ -40,8 +38,6 @@ export async function loadChart(keys: RegisterableKey[] = []): Promise<ChartJsMo
4038
return module;
4139
}
4240

43-
export type ChartJs = Chart;
44-
4541
export function createChartCanvas(width = 300, height = 400): { canvas: HTMLCanvasElement; ctx: CanvasRenderingContext2D | null } {
4642
const canvas = document.createElement('canvas');
4743
canvas.width = width;

0 commit comments

Comments
 (0)