Fix alphabetical sorting of screens

This commit is contained in:
Andrew Kingston 2020-11-09 08:32:44 +00:00
parent 4c77b9ceef
commit d248060d30
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@
export let screens = [] export let screens = []
$: sortedScreens = screens.sort( $: sortedScreens = screens.sort((s1, s2) =>
(s1, s2) => s1.props._instanceName > s2.props._instanceName s1.props._instanceName > s2.props._instanceName ? 1 : -1
) )
/* /*
Using a store here seems odd.... Using a store here seems odd....