@@ -80,6 +100,10 @@ const items = computed(() => [
border: none;
}
+:deep(.p-submenu-list) {
+ border-radius: 6px;
+}
+
:deep(.p-button .p-button-label::after) {
content: "";
display: block;
diff --git a/frontend/src/i18n/translations/de.json b/frontend/src/i18n/translations/de.json
index 23d4bda..143699e 100644
--- a/frontend/src/i18n/translations/de.json
+++ b/frontend/src/i18n/translations/de.json
@@ -2,7 +2,7 @@
"languageCode": "de",
"createCalendar": "Kalender erstellen",
"editCalendar": "Kalender bearbeiten",
- "roomFinder": "Raumfinder",
+ "rooms": "Räume",
"faq": "FAQ",
"imprint": "Impressum",
"privacy": "Datenschutz",
@@ -19,6 +19,8 @@
"semesterDropDown": "Semester"
},
"roomFinderPage": {
+ "roomSchedule": "Raumbelegung",
+ "freeRooms": "Freie Räume",
"headline": "Raumfinder",
"detail": "Bitte wähle einen Raum aus, um die Belegung einzusehen",
"dropDownSelect": "Bitte wähle einen Raum aus",
diff --git a/frontend/src/i18n/translations/en.json b/frontend/src/i18n/translations/en.json
index 04bb796..0e39b45 100644
--- a/frontend/src/i18n/translations/en.json
+++ b/frontend/src/i18n/translations/en.json
@@ -2,7 +2,7 @@
"languageCode": "en",
"createCalendar": "create calendar",
"editCalendar": "edit calendar",
- "roomFinder": "room finder",
+ "rooms": "rooms",
"faq": "faq",
"imprint": "imprint",
"privacy": "privacy",
@@ -19,6 +19,8 @@
"semesterDropDown": "please select a semester"
},
"roomFinderPage": {
+ "roomSchedule": "room schedule",
+ "freeRooms": "free rooms",
"headline": "room finder",
"detail": "please select a room to view the occupancy",
"dropDownSelect": "please select a room",
diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts
index a9aa05e..ae5909d 100644
--- a/frontend/vite.config.ts
+++ b/frontend/vite.config.ts
@@ -16,5 +16,12 @@ export default defineConfig({
watch: {
usePolling: true,
},
+ proxy: {
+ "/api": {
+ target: "http://localhost:8090/api",
+ changeOrigin: true,
+ rewrite: (path) => path.replace(/^\/api/, ""),
+ },
+ },
},
});