File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6666- Fixed that LED Buffer and Layout might get out of sync.
6767- Fixed Screen capture error (#1824 )
6868- Fixed Provide custom forwarding targets is not possible (#1713 )
69+ - Fixed Last update of an effect event is not removed in sources overview
6970
7071** JSON-API**
7172- Refactored JSON-API to ensure consistent authorization behaviour across sessions and single requests with token authorization.
Original file line number Diff line number Diff line change @@ -129,6 +129,11 @@ $(document).ready(function () {
129129 const prios = window . serverInfo . priorities ;
130130 let clearAll = false ;
131131
132+ if ( prios . length === 0 ) {
133+ $ ( '.sstbody' ) . append ( '<tr><td colspan="4" class="text-center text-muted">No sources available</td></tr>' ) ;
134+ return ;
135+ }
136+
132137 // Iterate over priorities
133138 for ( let i = 0 ; i < prios . length ; i ++ ) {
134139 let origin = prios [ i ] . origin ? prios [ i ] . origin : "System" ;
You can’t perform that action at this time.
0 commit comments