Skip to content

Commit

Permalink
fixup! perf: bundle with vite
Browse files Browse the repository at this point in the history
  • Loading branch information
st3iny committed Jun 18, 2024
1 parent c1170ab commit 1e0473d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/components/AppNavigation/Settings/ShortcutOverview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
class="shortcut-section-item">
<span class="shortcut-section-item__keys">
<template v-for="(keyCombination, index2) of shortcut.keys">
<template v-for="(key, index3) in keyCombination"
:key="`${category.categoryId}-${index}-${index2}-${index3}`">
<kbd>{{ key }}</kbd>
<template v-for="(key, index3) in keyCombination">
<kbd :key="`${category.categoryId}-${index}-${index2}-${index3}`">{{ key }}</kbd>
<span v-if="index3 !== (keyCombination.length - 1)"
:key="`${category.categoryId}-${index}-${index2}-${index3}`"
class="shortcut-section-item__spacer">
Expand Down
2 changes: 0 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
// eslint-disable-next-line import/no-unresolved, n/no-missing-import
import 'vite/modulepreload-polyfill'

import 'core-js/stable/index.js'

import './css/calendar.scss'

import Vue from 'vue'
Expand Down

0 comments on commit 1e0473d

Please sign in to comment.