-
{intl.formatMessage({id: 'limitedCard.title', defaultMessage: 'Cards Hidden'})}
+
+
{intl.formatMessage({id: 'limitedCard.title', defaultMessage: 'Cards hidden'})}
)
diff --git a/webapp/src/components/kanban/kanban.test.tsx b/webapp/src/components/kanban/kanban.test.tsx
index 939c08938..8ee0f8716 100644
--- a/webapp/src/components/kanban/kanban.test.tsx
+++ b/webapp/src/components/kanban/kanban.test.tsx
@@ -128,6 +128,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -163,6 +164,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -197,6 +199,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -233,6 +236,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -279,6 +283,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -325,6 +330,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -372,6 +378,7 @@ describe('src/component/kanban/kanban', () => {
addCard={mockedAddCard}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -410,6 +417,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -448,6 +456,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
@@ -493,6 +502,7 @@ describe('src/component/kanban/kanban', () => {
addCard={jest.fn()}
showCard={jest.fn()}
hiddenCardsCount={0}
+ showHiddenCardCountNotification={jest.fn()}
/>
,
), {wrapper: MemoryRouter})
diff --git a/webapp/src/components/kanban/kanban.tsx b/webapp/src/components/kanban/kanban.tsx
index 39d14998f..419b51c59 100644
--- a/webapp/src/components/kanban/kanban.tsx
+++ b/webapp/src/components/kanban/kanban.tsx
@@ -42,6 +42,7 @@ type Props = {
addCard: (groupByOptionId?: string, show?:boolean) => Promise
showCard: (cardId?: string) => void
hiddenCardsCount: number
+ showHiddenCardCountNotification: (show: boolean) => void
}
const ScrollingComponent = withScrolling('div')
@@ -320,7 +321,10 @@ const Kanban = (props: Props) => {
))}
{hiddenCardsCount > 0 &&
-
+
}
}
diff --git a/webapp/src/components/table/__snapshots__/table.test.tsx.snap b/webapp/src/components/table/__snapshots__/table.test.tsx.snap
index 3fdbc74e0..e1fa7d16d 100644
--- a/webapp/src/components/table/__snapshots__/table.test.tsx.snap
+++ b/webapp/src/components/table/__snapshots__/table.test.tsx.snap
@@ -2248,7 +2248,7 @@ exports[`components/table/Table limited card in table view 1`] = `