Skip to content

Commit

Permalink
Merge branch '1.x' of github.com:lara-zeus/popover into 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Mar 19, 2024
2 parents e754ebf + 65105be commit f5b88cb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to `Popover` will be documented in this file

## 1.1.5 - 2024-03-13

### What's Changed

* fix formatState by @andreazanini in https://github.com/lara-zeus/popover/pull/18

### New Contributors

* @andreazanini made their first contribution in https://github.com/lara-zeus/popover/pull/18

**Full Changelog**: https://github.com/lara-zeus/popover/compare/1.1.4...1.1.5

## 1.1.4 - 2024-03-09

### What's Changed
Expand Down Expand Up @@ -60,6 +72,7 @@ PopoverColumn::make('email')




```
now in your LW view:

Expand All @@ -70,6 +83,7 @@ now in your LW view:




```
**Full Changelog**: https://github.com/lara-zeus/popover/compare/1.0.4...1.1.0

Expand Down
3 changes: 2 additions & 1 deletion resources/views/popover-column.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
$descriptionBelow = $getDescriptionBelow();
$canWrap = $canWrap();
$getContent = $getContent();
$formattedState = $formatState($getState)
@endphp
<div
wire:key="{{ $this->getId() }}.table.record.{{ $recordKey }}.column.{{ $getName() }}"
Expand Down Expand Up @@ -40,7 +41,7 @@ class="relative w-full fi-popover-trigger cursor-pointer flex items-center gap-2
@click="$refs.panel.toggle"
@endif
>
{{ $getState }}
{{ $formattedState }}

@if($getIcon)
<x-filament::icon
Expand Down

0 comments on commit f5b88cb

Please sign in to comment.