Skip to content

Commit

Permalink
[BUG]: TextArea improvements (#396)
Browse files Browse the repository at this point in the history
* fix: add css improvements

* fix: add css improvements

* fix: http method
  • Loading branch information
CatiaBarroco-xgeeks authored Aug 5, 2022
1 parent 78c898a commit e6165cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/modules/cards/controller/cards.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
Delete,
Inject,
Param,
Patch,
Post,
Put,
Req,
Expand Down Expand Up @@ -283,7 +284,7 @@ export default class CardsController {
description: 'Internal Server Error',
type: InternalServerErrorResponse
})
@Put(':boardId/card/:cardId/position')
@Patch(':boardId/card/:cardId/position')
async updateCardPosition(
@Param() params: CardGroupParams,
@Body() boardData: UpdateCardPositionDto
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Board/Card/CardBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ const CardBoard = React.memo<CardBoardProps>(
size="md"
css={{
wordBreak: 'break-word',
whiteSpace: 'pre',

filter: cardBlur(
hideCards,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Board/Card/CardItem/CardItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ const CardItem: React.FC<CardItemProps> = React.memo(
<Text
size="sm"
css={{
whiteSpace: 'pre',
filter: cardItemBlur(hideCards, item as CardItemType, userId)
}}
>
Expand Down

0 comments on commit e6165cb

Please sign in to comment.