Fixed type errors and warnings

This commit is contained in:
Fabio Manganiello 2025-03-30 12:15:12 +02:00
parent 6b7e984817
commit 76a01f9f47
Signed by: blacklight
GPG key ID: D90FBA7F76362774
6 changed files with 42 additions and 18 deletions
frontend/src/mixins

View file

@ -80,6 +80,7 @@ export default {
$route(newRoute: { fullPath: string }, oldRoute: { fullPath: string }) {
const oldQuery = this.parseQuery(oldRoute.fullPath)
const newQuery = this.parseQuery(newRoute.fullPath)
// @ts-ignore
if (this.isQueryChanged({oldValue: oldQuery, newValue: newQuery})) {
this.query = newQuery
}