@finema/finework-layer 1.0.37 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.39](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.38...1.0.39) (2026-04-10)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* hilight not ([75edf87](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/75edf87b4f471a9171288b73376def219ca6a33c))
|
|
8
|
+
|
|
9
|
+
## [1.0.38](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.37...1.0.38) (2026-04-10)
|
|
10
|
+
|
|
3
11
|
## [1.0.37](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.36...1.0.37) (2026-04-10)
|
|
4
12
|
|
|
5
13
|
### Bug Fixes
|
|
@@ -213,7 +213,7 @@ const getMessage = (item: INotificationItem): string => {
|
|
|
213
213
|
|
|
214
214
|
if (item.data) {
|
|
215
215
|
Object.entries(item.data).forEach(([key, value]) => {
|
|
216
|
-
if (key.endsWith('_slug') && typeof value === 'string' && value) {
|
|
216
|
+
if ((key.endsWith('_slug') || key.endsWith('_name')) && typeof value === 'string' && value) {
|
|
217
217
|
const escapedValue = value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
218
218
|
const slugPattern = new RegExp(escapedValue, 'g')
|
|
219
219
|
|