@stack-spot/portal-layout 2.13.3 → 2.13.4
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,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.13.4](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.13.3...portal-layout@v2.13.4) (2024-10-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update validation day feedback modal ([b0c65a4](https://github.com/stack-spot/portal-commons/commit/b0c65a4ebedcd4e2a1d33ee6b578bd4e13c1c73c))
|
|
9
|
+
|
|
3
10
|
## [2.13.3](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.13.2...portal-layout@v2.13.3) (2024-10-21)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -39,7 +39,7 @@ export const shouldShowNpsModal = () => {
|
|
|
39
39
|
}
|
|
40
40
|
// Variables to control working days shown and extension day
|
|
41
41
|
let businessDaysShown = 0;
|
|
42
|
-
let day =
|
|
42
|
+
let day = 25;
|
|
43
43
|
// Iterate from the 25th until you can show 3 business days
|
|
44
44
|
while (businessDaysShown < 3) {
|
|
45
45
|
const checkDate = new Date(today.getFullYear(), today.getMonth(), day);
|
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@ export const shouldShowNpsModal = (): boolean => {
|
|
|
49
49
|
|
|
50
50
|
// Variables to control working days shown and extension day
|
|
51
51
|
let businessDaysShown = 0
|
|
52
|
-
let day =
|
|
52
|
+
let day = 25
|
|
53
53
|
|
|
54
54
|
// Iterate from the 25th until you can show 3 business days
|
|
55
55
|
while (businessDaysShown < 3) {
|