mirror of
https://github.com/gotson/komga.git
synced 2025-12-30 20:33:06 +01:00
fix type check
This commit is contained in:
parent
66c73c7a24
commit
39d49b21df
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import { aliases } from 'vuetify/iconsets/mdi'
|
|||
|
||||
// build the safelist from the vuetify icon aliases
|
||||
const vuetifyIcons = Object.keys(aliases).map(
|
||||
(key) => `i-mdi:${aliases[key].toString().substring(4)}`,
|
||||
(key) => `i-mdi:${aliases[key]!.toString().substring(4)}`,
|
||||
)
|
||||
|
||||
export default defineConfig({
|
||||
|
|
|
|||
Loading…
Reference in a new issue