diff --git a/ka-note/VERSION b/ka-note/VERSION index 1b9c4a2..bc15b23 100644 --- a/ka-note/VERSION +++ b/ka-note/VERSION @@ -1 +1 @@ -1.1.92 \ No newline at end of file +1.1.93 \ No newline at end of file diff --git a/ka-note/client/src/lib/components/PersonList.svelte b/ka-note/client/src/lib/components/PersonList.svelte index 076151c..9688762 100644 --- a/ka-note/client/src/lib/components/PersonList.svelte +++ b/ka-note/client/src/lib/components/PersonList.svelte @@ -6,8 +6,9 @@ interface Props { persons: AgendaContext[]; + sortable?: boolean; } - let { persons }: Props = $props(); + let { persons, sortable = false }: Props = $props(); function displayName(name: string): string { return name.replace('Person ', ''); @@ -68,10 +69,12 @@ {@const showTenure = subType === 'employee' && !!meta?.joinDate} {@const hasInfo = (showBirthday && !!meta?.birthday) || showTenure}