Skip to content

Commit 9652140

Browse files
committed
fix(fe): bug with wrapping dialog title
1 parent f9b842e commit 9652140

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

web2/src/App.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,15 @@
379379
<style lang="scss">
380380
.v-dialog > .v-card > .v-card__title {
381381
flex-wrap: nowrap;
382+
overflow: hidden;
383+
& * {
384+
white-space: nowrap;
385+
}
382386
}
383387
384388
.v-data-table tbody tr.v-data-table__expanded__content {
385389
box-shadow: none !important;
390+
386391
}
387392
388393
.v-data-table a {

web2/src/views/project/Templates.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
@save="onTaskCreated"
5353
>
5454
<template v-slot:title={}>
55-
<v-icon class="mr-4">{{ TEMPLATE_TYPE_ICONS[templateType] }}</v-icon>
55+
<v-icon small class="mr-4">{{ TEMPLATE_TYPE_ICONS[templateType] }}</v-icon>
5656
<span class="breadcrumbs__item">{{ templateAlias }}</span>
5757
<v-icon>mdi-chevron-right</v-icon>
5858
<span class="breadcrumbs__item">New Task</span>

0 commit comments

Comments
 (0)