Skip to content

Commit

Permalink
TCM-511: Fix processedRedirects value attribution (#469)
Browse files Browse the repository at this point in the history
#### What problem is this solving?

It's described
[here](https://vtex-dev.atlassian.net/browse/TCM-511?focusedCommentId=288544&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-288544).

<!--- What is the motivation and context for this change? -->

#### How should this be manually tested?


[Workspace](https://redirects--carolcanelas.myvtex.com/admin/cms/redirects/)

<!-- Your friendly Checklist/Reminders 📝 -->

<!-- 📒 Update `README.md`. -->
<!-- ❕ Update `CHANGELOG.md`. -->
<!-- 🔮 Link this PR to a Clubhouse story (if applicable). -->
<!-- 🤖 Update/create tests (important for bug fixes). -->
<!-- 🚿 Delete the workspace after merging this PR (if applicable). -->

#### Screenshots or example usage

#### Type of changes

<!--- Add a ✔️ where applicable -->

| ✔️ | Type of Change |
| --- |
-----------------------------------------------------------------------------------------
|
| ✔️ | Bug fix <!-- a non-breaking change which fixes an issue --> |
| \_ | New feature <!-- a non-breaking change which adds functionality
--> |
| \_ | Breaking change <!-- fix or feature that would cause existing
functionality to change --> |
| \_ | Technical improvements <!-- chores, refactors and overall
reduction of technical debt --> |

#### Notes

<!-- Put any relevant information that doesn't fit in the other sections
here. -->

#### How does this PR make you feel?
[:link:](http://giphy.com/categories/emotions/)

![](put .gif link here - can be found under "advanced" on giphy)
  • Loading branch information
myllenaalves authored Aug 5, 2024
1 parent 7acaeab commit cf0c5c1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
22 changes: 18 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed

- Fix processedRedirects value atribution.

## [4.55.0] - 2024-07-15

### Added

- Add the LMProductId to the navigation.json file.

## [4.54.1] - 2024-04-24
Expand All @@ -29,48 +34,56 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [4.53.0] - 2023-12-20

### Add

- Robots to be editable in page's form

### Fixed
- Translations for Bulgarian, Spanish, French, Korean, Dutch and Thai.

- Translations for Bulgarian, Spanish, French, Korean, Dutch and Thai.

## [4.52.0] - 2023-11-28

### Added

- Translations for the `fetchSponsoredProductsOnSearch` advanced setting.


## [4.51.2] - 2023-07-10

## [4.51.1] - 2023-06-21


### Fixed

- Fix exhibition of the end date of temporary redirects.

## [4.51.0] - 2023-06-14 - 2023-06-05

### Added

- Redirects searcher

## [4.50.0] - 2023-04-03

### Added

- German translation.

### Fixed

- English, French, Italian, Portuguese, Spanish and Thai translation.
- I18n for color picker label.
- I18n issue in Media Gallery Widget component.

## [4.49.13] - 2023-03-27

### Changed

- `apps-graphql` version

## [4.49.12] - 2023-03-14

### Fix
- Displayed message at UI in redirects type was wrong

- Displayed message at UI in redirects type was wrong

## [4.49.11] - 2022-12-19

Expand All @@ -87,6 +100,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [4.49.9] - 2022-12-07

### Fixed

- Missing messages in all languages.

## [4.49.8] - 2022-11-01
Expand Down
2 changes: 1 addition & 1 deletion react/components/admin/redirects/UploadModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const UploadModal: React.FunctionComponent<Props &
mutation,
shouldUploadRef,
updateProgress: processed => {
setProcessedRedirect(current => current + processed)
setProcessedRedirect(processed)
},
})

Expand Down

0 comments on commit cf0c5c1

Please sign in to comment.