Add support for sorting in peer table

This commit is contained in:
2024-02-28 15:50:57 +01:00
parent 20610204e5
commit 959127ac2c
6 changed files with 107 additions and 25 deletions

View File

@@ -0,0 +1,22 @@
<script>
export let field = ""
export let active_field = ""
export let asc = true
export let sort_func
</script>
<button class:button_highlight={active_field === field} on:click={() => sort_func(field)}>
{#if asc}
{:else}
{/if}
<slot></slot>
</button>
<style>
button {
margin: 0;
line-height: 1.2em;
}
</style>