Fix GH-1727: Board calculations: Dates are cut off (#1770)

* Fix GH-1727

* update snapshots

* fix snapshot
This commit is contained in:
Hossein 2021-11-09 15:26:45 -05:00 committed by GitHub
parent 520f1e65e7
commit 792d8832c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 0 deletions

View File

@ -259,6 +259,7 @@ exports[`components/centerPanel return centerPanel and click on card to show car
class="KanbanCalculation"
>
<button
title="0"
type="button"
>
<span>
@ -312,6 +313,7 @@ exports[`components/centerPanel return centerPanel and click on card to show car
class="KanbanCalculation"
>
<button
title="2"
type="button"
>
<span>
@ -365,6 +367,7 @@ exports[`components/centerPanel return centerPanel and click on card to show car
class="KanbanCalculation"
>
<button
title="0"
type="button"
>
<span>
@ -7278,6 +7281,7 @@ exports[`components/centerPanel should match snapshot for Kanban 1`] = `
class="KanbanCalculation"
>
<button
title="0"
type="button"
>
<span>
@ -7331,6 +7335,7 @@ exports[`components/centerPanel should match snapshot for Kanban 1`] = `
class="KanbanCalculation"
>
<button
title="1"
type="button"
>
<span>
@ -7384,6 +7389,7 @@ exports[`components/centerPanel should match snapshot for Kanban 1`] = `
class="KanbanCalculation"
>
<button
title="0"
type="button"
>
<span>

View File

@ -35,6 +35,7 @@ exports[`src/component/kanban/kanban return kanban and change title on KanbanCol
class="KanbanCalculation"
>
<button
title="2"
type="button"
>
<span>
@ -88,6 +89,7 @@ exports[`src/component/kanban/kanban return kanban and change title on KanbanCol
class="KanbanCalculation"
>
<button
title="1"
type="button"
>
<span>
@ -320,6 +322,7 @@ exports[`src/component/kanban/kanban return kanban and click on KanbanCalculatio
class="KanbanCalculation"
>
<button
title="2"
type="button"
>
<span>
@ -373,6 +376,7 @@ exports[`src/component/kanban/kanban return kanban and click on KanbanCalculatio
class="KanbanCalculation"
>
<button
title="1"
type="button"
>
<span>
@ -605,6 +609,7 @@ exports[`src/component/kanban/kanban should match snapshot 1`] = `
class="KanbanCalculation"
>
<button
title="2"
type="button"
>
<span>
@ -658,6 +663,7 @@ exports[`src/component/kanban/kanban should match snapshot 1`] = `
class="KanbanCalculation"
>
<button
title="1"
type="button"
>
<span>

View File

@ -7,6 +7,7 @@ exports[`components/kanban/calculation/KanbanCalculation base case 1`] = `
>
<button
class="Button"
title="3"
type="button"
>
<span>
@ -24,6 +25,7 @@ exports[`components/kanban/calculation/KanbanCalculation calculations menu open
>
<button
class="Button"
title="3"
type="button"
>
<span>
@ -200,6 +202,7 @@ exports[`components/kanban/calculation/KanbanCalculation no menu should appear i
>
<button
class="Button"
title="3"
type="button"
>
<span>

View File

@ -7,6 +7,13 @@
padding: 0 6px;
min-width: 24px;
span {
max-width: 35px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
&:hover {
background-color: rgba(var(--center-channel-color-rgb), 0.1);
}

View File

@ -32,6 +32,7 @@ function KanbanCalculation(props: Props): JSX.Element {
<Button
onClick={() => (props.menuOpen ? props.onMenuClose : props.onMenuOpen)()}
onBlur={props.onMenuClose}
title={Calculations[props.value] ? Calculations[props.value](props.cards, props.property, intl) : ''}
>
{Calculations[props.value] ? Calculations[props.value](props.cards, props.property, intl) : ''}
</Button>