initial public commit
This commit is contained in:
15
ui/src/components/users/UserSelectOption.svelte
Normal file
15
ui/src/components/users/UserSelectOption.svelte
Normal file
@@ -0,0 +1,15 @@
|
||||
<script>
|
||||
import tooltip from "@/actions/tooltip";
|
||||
|
||||
export let item = {}; // model
|
||||
</script>
|
||||
|
||||
<i
|
||||
class="ri-information-line link-hint"
|
||||
use:tooltip={{ text: JSON.stringify(item, null, 2), position: "left", class: "code" }}
|
||||
/>
|
||||
|
||||
<div class="content">
|
||||
<div class="block txt-ellipsis">{item.id}</div>
|
||||
<small class="block txt-hint txt-ellipsis">{item.email}</small>
|
||||
</div>
|
||||
Reference in New Issue
Block a user