Skip to content

Commit

Permalink
N21-2067 Fix max-width of Courses (#3312)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinOehlerkingCap authored Jul 3, 2024
1 parent 9792cca commit 2903132
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/components/templates/DefaultWireframe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ const props = defineProps({
},
maxWidth: {
type: String as PropType<"full" | "short" | "nativ">,
required: true,
default: "short",
},
fabItems: {
type: Object as PropType<Fab>,
Expand Down
4 changes: 2 additions & 2 deletions src/modules/feature/board/board/Board.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<DefaultWireframe
ref="main"
:breadcrumbs="breadcrumbs"
full-width
max-width="full"
hide-border
>
<template #header>
Expand Down Expand Up @@ -93,6 +93,7 @@
<script setup lang="ts">
import CopyResultModal from "@/components/copy-result-modal/CopyResultModal.vue";
import ShareModal from "@/components/share/ShareModal.vue";
import DefaultWireframe from "@/components/templates/DefaultWireframe.vue";
import { useCopy } from "@/composables/copy";
import { useLoadingState } from "@/composables/loadingState";
import {
Expand Down Expand Up @@ -130,7 +131,6 @@ import { useBodyScrolling } from "../shared/BodyScrolling.composable";
import BoardColumn from "./BoardColumn.vue";
import BoardColumnGhost from "./BoardColumnGhost.vue";
import BoardHeader from "./BoardHeader.vue";
import DefaultWireframe from "@/components/templates/DefaultWireframe.vue";
const props = defineProps({
boardId: { type: String, required: true },
Expand Down
7 changes: 4 additions & 3 deletions src/pages/rooms/RoomDetails.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
:fab-items="getCurrentFabItems"
:breadcrumbs="breadcrumbs"
@onFabItemClick="fabItemClickHandler"
max-width="short"
>
<template #header>
<div class="d-flex ma-2 mt-3">
Expand Down Expand Up @@ -135,11 +136,11 @@ import { defineComponent } from "vue";
import { useI18n } from "vue-i18n";
import RoomExternalToolsOverview from "./tools/RoomExternalToolsOverview.vue";
import {
COPY_MODULE_KEY,
SHARE_MODULE_KEY,
AUTH_MODULE_KEY,
COMMON_CARTRIDGE_EXPORT_MODULE_KEY,
COPY_MODULE_KEY,
ROOM_MODULE_KEY,
AUTH_MODULE_KEY,
SHARE_MODULE_KEY,
} from "@/utils/inject";
export default defineComponent({
Expand Down

0 comments on commit 2903132

Please sign in to comment.