Skip to content

Commit

Permalink
chore: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
claustres committed Sep 4, 2024
1 parent 952b2dc commit 023e60b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions core/client/components/collection/KGrid.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div
<div
class="fit column no-wrap"
:class="dense ? 'q-gutter-y-xs' : 'q-gutter-y-sm'"
>
Expand All @@ -14,8 +14,8 @@
<!--
Content
-->
<div v-if="items.length > 0"
id="grid-content"
<div v-if="items.length > 0"
id="grid-content"
ref="contentRef"
class="col scroll"
>
Expand Down
2 changes: 1 addition & 1 deletion core/client/components/collection/KScrollToTop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function scrollToTop () {
return
}
qScrollUtils.setVerticalScrollPosition(targetElement, 0, props.duration)
logger.trace(`[KDK] (KScrollToTop) Scrolled to top`)
logger.trace('[KDK] (KScrollToTop) Scrolled to top')
refresh()
}
Expand Down
10 changes: 5 additions & 5 deletions core/client/components/collection/KTimeLine.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div
<div
class="fit column no-wrap"
:class="dense ? 'q-gutter-y-xs' : 'q-gutter-y-sm'"
>
Expand All @@ -17,9 +17,9 @@
<!--
Content
-->
<div v-if="items.length > 0"
<div v-if="items.length > 0"
id="timeline-content"
ref="contentRef"
ref="contentRef"
class="col scroll"
>
<q-timeline
Expand Down Expand Up @@ -156,7 +156,7 @@
import _ from 'lodash'
import moment from 'moment'
import { ref, computed, watch, toRefs, onBeforeMount, onBeforeUnmount } from 'vue'
import { useQuasar, scroll } from 'quasar'
import { useQuasar } from 'quasar'
import { useCollection } from '../../composables'
import { Events } from '../../events.js'
import { Time } from '../../time.js'
Expand Down Expand Up @@ -280,7 +280,7 @@ watch(items, onCollectionRefreshed)
// Functions
function onBodyRendered (instance) {
// Force the scroll components to be refreshed
// Force the scroll components to be refreshed
if (instance) onScroll()
}
function scrollDownRefCreated (instance) {
Expand Down
8 changes: 4 additions & 4 deletions core/client/components/layout/KWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
Window header
-->
<div
:id="`${placement}-window-header`"
:id="`${placement}-window-header`"
class="k-window-header full-width row items-center"
v-touch-pan.prevent.mouse="onMoved"
>
<q-resize-observer @resize="onHeaderResized" />
<!-- window menu -->
<KPanel
:id="`${placement}-window-menu`"
:id="`${placement}-window-menu`"
:content="menu"
@touchstart.passive.stop
@mousedown.passive.stop
Expand Down Expand Up @@ -74,8 +74,8 @@
<!--
Window footer
-->
<div
:id="`${placement}-window-footer`"
<div
:id="`${placement}-window-footer`"
class="k-window-footer full-width row justify-end"
>
<q-resize-observer @resize="onFooterResized" />
Expand Down

0 comments on commit 023e60b

Please sign in to comment.