Skip to content

Commit ec25730

Browse files
committed
Editor: Clean up.
1 parent 8a321b5 commit ec25730

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

editor/js/Sidebar.Project.Video.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function SidebarProjectVideo( editor ) {
5353
progress.setWidth( '170px' );
5454
container.add( progress );
5555

56-
const renderButton = new UIButton( strings.getKey( 'sidebar/project/render' ) ).setTextTransform( 'uppercase' );
56+
const renderButton = new UIButton( strings.getKey( 'sidebar/project/render' ) );
5757
renderButton.setWidth( '170px' );
5858
renderButton.onClick( async () => {
5959

editor/js/Sidebar.Settings.History.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function SidebarSettingsHistory( editor ) {
6060

6161
// Clear History
6262

63-
const option = new UIButton( strings.getKey( 'sidebar/history/clear' ) ).setTextTransform( 'uppercase' );
63+
const option = new UIButton( strings.getKey( 'sidebar/history/clear' ) );
6464
option.onClick( function () {
6565

6666
if ( confirm( 'The Undo/Redo History will be cleared. Are you sure?' ) ) {

0 commit comments

Comments
 (0)