1
1
mirror of https://github.com/go-gitea/gitea synced 2025-11-22 06:08:12 +00:00

Update JS deps (#35978)

Update JS deps, regenerate SVGs, fixed lint issues and did cursory
testing of UI.
This commit is contained in:
silverwind
2025-11-20 22:53:44 +01:00
committed by GitHub
parent afc25c5145
commit 1baca49870
33 changed files with 926 additions and 1101 deletions

View File

@@ -1,6 +1,6 @@
export class InitPerformanceTracer {
results: {name: string, dur: number}[] = [];
recordCall(name: string, func: ()=>void) {
recordCall(name: string, func: () => void) {
const start = performance.now();
func();
this.results.push({name, dur: performance.now() - start});