Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Long tags shown in the left side menu are truncated.

### Security

## \[1.0.3\] - 2026-07-10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
} = $props();
</script>

<div class="flex flex-col gap-2">
<div class="flex gap-2">
<div class="flex min-w-0 flex-col gap-2">
<div class="flex min-w-0 gap-2">
<Checkbox
id={name}
aria-labelledby={`${name}-label`}
Expand All @@ -32,8 +32,9 @@
<Label
id={`${name}-label`}
for={name}
class="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
class="min-w-0 flex-1 truncate text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
data-testid="tags-menu-label"
title={label}
>
{label}
</Label>
Expand Down
Loading