@stoker-platform/web-app 0.5.102 → 0.5.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/Collection.tsx +2 -2
- package/src/Tenant.tsx +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/Collection.tsx
CHANGED
|
@@ -1742,7 +1742,7 @@ function Collection({
|
|
|
1742
1742
|
fullTextSearch &&
|
|
1743
1743
|
!hasEntityRestrictions?.length &&
|
|
1744
1744
|
!hasEntityParentFilters?.length)) && (
|
|
1745
|
-
<
|
|
1745
|
+
<search className="relative flex-1">
|
|
1746
1746
|
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
|
1747
1747
|
<Input
|
|
1748
1748
|
type="search"
|
|
@@ -1754,7 +1754,7 @@ function Collection({
|
|
|
1754
1754
|
{search && (
|
|
1755
1755
|
<span className="absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 block h-3 w-3 rounded-full bg-destructive"></span>
|
|
1756
1756
|
)}
|
|
1757
|
-
</
|
|
1757
|
+
</search>
|
|
1758
1758
|
)}
|
|
1759
1759
|
{ai?.chat && ai.chat.roles.includes(permissions.Role) && (
|
|
1760
1760
|
<Sheet>
|
package/src/Tenant.tsx
CHANGED
|
@@ -590,7 +590,7 @@ function Tenant() {
|
|
|
590
590
|
<div className="ml-auto flex-1 lg:flex-initial text-primary dark">
|
|
591
591
|
<Popover open={searchFocused && Boolean(search)}>
|
|
592
592
|
<PopoverTrigger asChild>
|
|
593
|
-
<
|
|
593
|
+
<search className="relative">
|
|
594
594
|
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
|
595
595
|
<Input
|
|
596
596
|
type="search"
|
|
@@ -612,7 +612,7 @@ function Tenant() {
|
|
|
612
612
|
}
|
|
613
613
|
}}
|
|
614
614
|
/>
|
|
615
|
-
</
|
|
615
|
+
</search>
|
|
616
616
|
</PopoverTrigger>
|
|
617
617
|
{search && showSearchAll && <SearchAll query={search} />}
|
|
618
618
|
</Popover>
|