Skip to content

Commit a46c9a2

Browse files
committed
style: fixed lint issues
1 parent b6e0bc3 commit a46c9a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/client/components/collection/KTimeFilterControl.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</template>
1010

1111
<script setup>
12+
import _ from 'lodash'
1213
import { computed } from 'vue'
1314
import { useCurrentActivity } from '../../composables'
1415
@@ -28,7 +29,7 @@ const timeFilter = CurrentActivityContext.state.timeFilter
2829
const min = computed(() => _.get(timeFilter, 'min'))
2930
const max = computed(() => _.get(timeFilter, 'max'))
3031
const hasTimeRange = computed(() => {
31-
return !_.isEmpty(min.value) && !_.isEmpty(max.value) && min.value !== max.value
32+
return !_.isEmpty(min.value) && !_.isEmpty(max.value) && min.value !== max.value
3233
})
3334
3435
// Functions

0 commit comments

Comments
 (0)