Skip to content

Commit

Permalink
Fix typo in note and sort Other Channel Output types in dropdown.
Browse files Browse the repository at this point in the history
Fixes #1668
  • Loading branch information
cpinkham committed Nov 28, 2023
1 parent 9a8e200 commit 8bb9b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions www/co-other.php
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,7 @@ function AddOtherOutput() {
$('#outputType').append(new Option(output_module.typeFriendlyName, output_module.typeName));
})

$('#outputType').html($('#outputType').find('option').sort(function(a,b) { return $(a).text().toUpperCase() < $(b).text().toUpperCase() ? -1 : 1}));
}

var otherTableInfo = {
Expand Down
2 changes: 1 addition & 1 deletion www/commandPresets.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function SaveCommands()
<div class="backdrop">
<b>Notes:</b>
<ul>
<li>Presets can be triggered based on channel data by defining a "Command Channel" output on the Channel Outputs page.</li>
<li>Presets can be triggered based on channel data by defining a "Control Channel" output on the Channel Outputs page.</li>
<li>Predefined Preset Names are automatically triggered within FPP when the action described occurs.</li>
</ul>

Expand Down

0 comments on commit 8bb9b05

Please sign in to comment.