From ef57cba0f568da288884353d18e0878f7e719503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 21 Dec 2022 15:48:42 +0300 Subject: [PATCH] lint fix --- components/badgedirective/BadgeDirective.js | 3 +-- components/utils/Utils.js | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/components/badgedirective/BadgeDirective.js b/components/badgedirective/BadgeDirective.js index aea2a65de..07267f3f8 100644 --- a/components/badgedirective/BadgeDirective.js +++ b/components/badgedirective/BadgeDirective.js @@ -1,5 +1,4 @@ -import { DomHandler } from 'primevue/utils'; -import { UniqueComponentId } from 'primevue/utils'; +import { DomHandler, UniqueComponentId } from 'primevue/utils'; const BadgeDirective = { beforeMount(el, options) { diff --git a/components/utils/Utils.js b/components/utils/Utils.js index 01879ce2a..aaa8be247 100644 --- a/components/utils/Utils.js +++ b/components/utils/Utils.js @@ -1,8 +1,8 @@ import ConnectedOverlayScrollHandler from './ConnectedOverlayScrollHandler'; import DomHandler from './DomHandler'; -import ObjectUtils from './ObjectUtils'; -import ZIndexUtils from './ZIndexUtils'; -import UniqueComponentId from './UniqueComponentId'; import EventBus from './EventBus'; +import ObjectUtils from './ObjectUtils'; +import UniqueComponentId from './UniqueComponentId'; +import ZIndexUtils from './ZIndexUtils'; export { ConnectedOverlayScrollHandler, DomHandler, ObjectUtils, ZIndexUtils, UniqueComponentId, EventBus };