diff --git a/public/css/components/dashboard.css b/public/css/components/dashboard.css index d030e80cd..ae2bb252f 100644 --- a/public/css/components/dashboard.css +++ b/public/css/components/dashboard.css @@ -112,23 +112,23 @@ } .cursor-nw-resize { - cursor: nw-resize; + cursor: nw-resize !important; } .cursor-ew-resize { - cursor: ew-resize; + cursor: ew-resize !important; } .cursor-ns-resize { - cursor: ns-resize; + cursor: ns-resize !important; } .no-drag-drop { - cursor: not-allowed; + cursor: not-allowed !important; } .cursor-move { - cursor: move; + cursor: move !important; } .draggedItem { diff --git a/public/js/components/Cis/LvPlan/LvPlan.js b/public/js/components/Cis/LvPlan/LvPlan.js index 7aeaa0f1b..a095f9f31 100644 --- a/public/js/components/Cis/LvPlan/LvPlan.js +++ b/public/js/components/Cis/LvPlan/LvPlan.js @@ -2,7 +2,6 @@ import FhcCalendar from "../../Calendar/Calendar.js"; import CalendarDate from "../../../composables/CalendarDate.js"; import LvModal from "../Mylv/LvModal.js"; import LvMenu from "../Mylv/LvMenu.js" -import lehreinheitEvent from "../Renderer/Lehreinheit/calendarEvent.js" import ApiLvPlan from '../../../api/factory/lvPlan.js'; import ApiAuthinfo from '../../../api/factory/authinfo.js'; @@ -24,7 +23,6 @@ const LvPlan = { studiensemester_start: null, studiensemester_ende: null, uid: null, - renderComponents: {}, isModalContentResolved: false, isModalTitleResolved: false, isShowModal: false, @@ -94,7 +92,7 @@ const LvPlan = { } }, components: { - FhcCalendar, LvModal, LvMenu, lehreinheitEvent + FhcCalendar, LvModal, LvMenu }, computed:{ modalLoaded: function(){ diff --git a/public/js/components/Dashboard/Dashboard.js b/public/js/components/Dashboard/Dashboard.js index 825bad3f7..81eabd31c 100644 --- a/public/js/components/Dashboard/Dashboard.js +++ b/public/js/components/Dashboard/Dashboard.js @@ -196,7 +196,7 @@ export default {