musora-content-services 2.155.2 → 2.155.6
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
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.155.6](https://github.com/railroadmedia/musora-content-services/compare/v2.155.5...v2.155.6) (2026-04-23)
|
|
6
|
+
|
|
7
|
+
### [2.155.5](https://github.com/railroadmedia/musora-content-services/compare/v2.155.4...v2.155.5) (2026-04-23)
|
|
8
|
+
|
|
9
|
+
### [2.155.4](https://github.com/railroadmedia/musora-content-services/compare/v2.155.3...v2.155.4) (2026-04-23)
|
|
10
|
+
|
|
11
|
+
### [2.155.3](https://github.com/railroadmedia/musora-content-services/compare/v2.155.2...v2.155.3) (2026-04-23)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **BR-460:** report option label updates ([#940](https://github.com/railroadmedia/musora-content-services/issues/940)) ([8ad8f72](https://github.com/railroadmedia/musora-content-services/commit/8ad8f72dd9a1284b4098aa00f08962a53a170275))
|
|
17
|
+
|
|
5
18
|
### [2.155.2](https://github.com/railroadmedia/musora-content-services/compare/v2.155.1...v2.155.2) (2026-04-22)
|
|
6
19
|
|
|
7
20
|
|
package/package.json
CHANGED
|
@@ -224,7 +224,7 @@ export function getReportIssueOptions(
|
|
|
224
224
|
|
|
225
225
|
contentOptions.push(
|
|
226
226
|
{ value: 'assignment_issue', label: 'An issue with lesson assignment' },
|
|
227
|
-
{ value: 'other', label: 'Other' }
|
|
227
|
+
{ value: 'other', label: 'Other reasons' }
|
|
228
228
|
)
|
|
229
229
|
|
|
230
230
|
return contentOptions
|
|
@@ -245,12 +245,12 @@ export function getReportIssueOptions(
|
|
|
245
245
|
|
|
246
246
|
playlistOptions.push(
|
|
247
247
|
{ value: 'assignment_issue', label: 'An issue with lesson assignment' },
|
|
248
|
-
{ value: 'other', label: 'Other' }
|
|
248
|
+
{ value: 'other', label: 'Other reasons' }
|
|
249
249
|
)
|
|
250
250
|
|
|
251
251
|
return playlistOptions
|
|
252
252
|
|
|
253
253
|
default:
|
|
254
|
-
return [{ value: 'other', label: 'Other' }]
|
|
254
|
+
return [{ value: 'other', label: 'Other reasons' }]
|
|
255
255
|
}
|
|
256
256
|
}
|