pocketbase/ui/src/components/collections/schema/SchemaFieldUrl.svelte

10 lines
272 B
Svelte
Raw Normal View History

2023-03-17 01:21:16 +08:00
<script>
import SchemaFieldEmail from "./SchemaFieldEmail.svelte";
export let field;
export let key = "";
</script>
<!-- shares the same options with the email field -->
<SchemaFieldEmail bind:field {key} on:rename on:remove on:duplicate {...$$restProps} />