Monday, May 20, 2024
2 changes · master
Resolved issues and error corrections
Notifications that include more than one link now display all intended links instead of only one. This helps users access every relevant URL from system messages without missing important actions or information.
Original PR description
Isuue ===== There was a problem with using the spread operator in this function when links contained multiple URLs. For example, const array = ['a', 'b', 'c']. When we use the spread operator for the first time, the result is 'a', 'b', 'c'. However ,when we try to spread it again, it doesn't work properly, it only shows single link inside notification toast Resolution =========== The implementation was updated to correctly handle multiple URLs by removing the spread operator before links.
A small typo was corrected in the Project app by removing an extra quotation mark from a view name. This helps keep labels clean and avoids potential confusion in the user interface.
Original PR description
This commit removes an unwanted trailing `"` from a view name.