⬆️ Upgrade dependencies

This commit is contained in:
2023-08-25 14:42:13 +02:00
parent f18454c49a
commit 57807e7ce0
9 changed files with 1197 additions and 621 deletions

View File

@ -1,7 +1,7 @@
<script setup>
import { selectedDate, changeDate, changeDay } from "@/store";
import { Swiper, SwiperSlide } from "swiper/vue";
import { Virtual } from "swiper";
import { Virtual } from "swiper/modules";
import { ref, watch } from "vue";
import { getDateSkippingWeekend, setUTCMidnight } from "@/util";
import ScrollableContainer from "@/components/scrollable-container.vue";

View File

@ -87,7 +87,7 @@ const keyNotes = ref();
async function createKey() {
return await createObject("key", {
key: keyId.value,
permissions: keyPermissions.value,
permissions: keyPermissions.value.split(","),
notes: keyNotes.value,
});
}