refactor(js helpers): moves ObjectUtils from composables to the js helpers folder and changes its import statements

This commit is contained in:
SimonGschnell
2024-11-07 14:43:52 +01:00
parent da70c77a2b
commit f4176b86ee
3 changed files with 2 additions and 2 deletions
@@ -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: {
+1 -1
View File
@@ -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: {