Skip to content

Commit

Permalink
chore: update meilisearch, small svelte improvement (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenrayhorn authored Nov 9, 2024
1 parent afba584 commit 6b56593
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
35 changes: 20 additions & 15 deletions server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ tower-http = { version = "0.6.0", features = ["fs", "timeout"] }
tower = "0.5"
ammonia = "4.0.0"
pulldown-cmark = "0.12.0"
milli_v1 = { git = "https://github.com/meilisearch/meilisearch", package = "milli", tag = "v1.10.3" }
milli_v1 = { git = "https://github.com/meilisearch/meilisearch", package = "milli", tag = "v1.11.1" }
futures = "0.3.31"
4 changes: 1 addition & 3 deletions ui/src/lib/components/Button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
rightIcon,
...rest
}: Props = $props();
const children_render = $derived(children);
</script>

<button class={`${className ?? ''}`} {...rest} disabled={isDisabled || isLoading}>
Expand All @@ -31,7 +29,7 @@
{@render leftIcon?.()}
{/if}

{@render children_render?.()}
{@render children?.()}

{#if rightIcon && !isLoading}
{@render rightIcon?.()}
Expand Down

0 comments on commit 6b56593

Please sign in to comment.