Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
dashboard
Commits
4c90f277
Commit
4c90f277
authored
1 year ago
by
Konrad Mohrfeldt
Browse files
Options
Downloads
Patches
Plain Diff
fix: use full viewport height for calendar
refs
#154
parent
3d4e9b28
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Pages/EmissionManager.vue
+6
-5
6 additions, 5 deletions
src/Pages/EmissionManager.vue
src/components/PageHeader.vue
+1
-1
1 addition, 1 deletion
src/components/PageHeader.vue
with
7 additions
and
6 deletions
src/Pages/EmissionManager.vue
+
6
−
5
View file @
4c90f277
<
template
>
<b-container>
<b-container
class=
"tw-flex tw-flex-col"
>
<PageHeader
:title=
"$t('navigation.calendar')"
>
<b-button-group
v-if=
"selectedShow"
>
<b-button
:variant=
"view === 'day' ? 'primary' : 'secondary'"
@
click=
"view = 'day'"
>
...
...
@@ -17,7 +17,7 @@
</div>
</
template
>
<auth-wall
v-else-if=
"selectedShow"
>
<auth-wall
v-else-if=
"selectedShow"
class=
"tw-flex-1"
>
<b-alert
:variant=
"conflictCount > 0 ? 'danger' : 'success'"
:show=
"conflictMode"
>
<div
v-if=
"conflictMode"
>
<h4>
{{ $t('conflictResolution.title') }}
</h4>
...
...
@@ -76,8 +76,8 @@
<server-errors
:errors=
"serverErrors"
/>
<div>
<div
:class=
"{ 'tw-hidden': view !== 'week' }"
>
<div
class=
"tw-h-full"
>
<div
class=
"tw-h-full"
:class=
"{ 'tw-hidden': view !== 'week' }"
>
<FullCalendar
ref=
"calendar"
:options=
"calendarConfig"
/>
</div>
...
...
@@ -320,7 +320,8 @@ export default {
initialView
:
'
timeGridWeek
'
,
locale
:
this
.
$activeLocale
(),
initialDate
:
this
.
currentStart
,
height
:
600
,
height
:
'
100%
'
,
stickyHeaderDates
:
true
,
firstDay
:
1
,
navLinks
:
true
,
events
:
this
.
calendarSlots
,
...
...
This diff is collapsed.
Click to expand it.
src/components/PageHeader.vue
+
1
−
1
View file @
4c90f277
...
...
@@ -15,7 +15,7 @@
</div>
</div>
<hr
/>
<hr
class=
"tw-w-full"
/>
</
template
>
<
script
setup
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment