From f4176b86ee9beb39da3cbb4d1b0576a86576ec69 Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Thu, 7 Nov 2024 14:43:52 +0100 Subject: [PATCH] refactor(js helpers): moves ObjectUtils from composables to the js helpers folder and changes its import statements --- public/js/components/Dashboard/Admin/Presets.js | 2 +- public/js/components/Dashboard/Dashboard.js | 2 +- public/js/{composables => helpers}/ObjectUtils.js | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename public/js/{composables => helpers}/ObjectUtils.js (100%) diff --git a/public/js/components/Dashboard/Admin/Presets.js b/public/js/components/Dashboard/Admin/Presets.js index 8b7e7d8b9..fa8f65970 100644 --- a/public/js/components/Dashboard/Admin/Presets.js +++ b/public/js/components/Dashboard/Admin/Presets.js @@ -1,6 +1,6 @@ import DashboardSection from "../Section.js"; import DashboardWidgetPicker from "../Widget/Picker.js"; -import ObjectUtils from "../../../composables/ObjectUtils.js"; +import ObjectUtils from "../../../helpers/ObjectUtils.js"; export default { components: { diff --git a/public/js/components/Dashboard/Dashboard.js b/public/js/components/Dashboard/Dashboard.js index bc7199af0..3a3f3626a 100644 --- a/public/js/components/Dashboard/Dashboard.js +++ b/public/js/components/Dashboard/Dashboard.js @@ -1,6 +1,6 @@ import DashboardSection from "./Section.js"; import DashboardWidgetPicker from "./Widget/Picker.js"; -import ObjectUtils from "../../composables/ObjectUtils.js"; +import ObjectUtils from "../../helpers/ObjectUtils.js"; export default { components: { diff --git a/public/js/composables/ObjectUtils.js b/public/js/helpers/ObjectUtils.js similarity index 100% rename from public/js/composables/ObjectUtils.js rename to public/js/helpers/ObjectUtils.js