Skip to content

Commit

Permalink
Merge branch 'master' into SUP-42354
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzipi-kaltura authored May 7, 2024
2 parents 6e8cc65 + a00d751 commit 8dd38ea
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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.

## 0.79.0 (2024-05-02)


### Features

* **FEC-13728:** Add 'MiniAudioPreset handling ([#877](https://github.com/kaltura/playkit-js-ui/issues/877)) ([da9bbc3](https://github.com/kaltura/playkit-js-ui/commit/da9bbc3))



### 0.78.4 (2024-04-09)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playkit-js/playkit-js-ui",
"version": "0.78.4",
"version": "0.79.0",
"description": "",
"keywords": [
"kaltura",
Expand Down
4 changes: 4 additions & 0 deletions src/components/captions-menu/captions-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ class CaptionsMenu extends Component<any, any> {
active: t.active,
value: t
}))
.map(t => ({
...t,
label: t.label.charAt(0).toUpperCase() + t.label.slice(1)
}))
.sort((a, b) => (a.label > b.label || a.label === 'Off' ? 1 : -1));

if (props.showAdvancedCaptionsMenu) {
Expand Down

0 comments on commit 8dd38ea

Please sign in to comment.