mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 01:30:13 +00:00
feat: only show one shard's popup at a time
This commit is contained in:
parent
762ac7c7c4
commit
400918c349
2 changed files with 6 additions and 4 deletions
|
|
@ -2,6 +2,8 @@
|
|||
import { Container } from 'sveltestrap';
|
||||
import ShardItem from '../lib/shard.svelte';
|
||||
|
||||
let hover = null;
|
||||
|
||||
let message = "Loading...";
|
||||
let shards = [];
|
||||
let pingAverage = "";
|
||||
|
|
@ -115,6 +117,6 @@
|
|||
<span>{ message }</span>
|
||||
|
||||
{#each shards as shard}
|
||||
<ShardItem shard={shard} />
|
||||
<ShardItem shard={shard} bind:hover={hover} />
|
||||
{/each}
|
||||
</Container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue