-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Description
Flux version
2.9.2
Livewire version
3.7.1
Tailwind version
4.1.14
Browser and Operating System
Safari on macOS
What is the problem?
The insert link in Flux Editor doesn't properly in Flux Tab. For example, I have Ticket view page and it has 3 tabs: -
- Details for ticket detail along with send message to customer using Flux Editor,
- Chat for chat with team members using Flux Editor,
- History for showing ticket history
The insert link doesn't work properly in two Flux Editors (Details and Chat) tabs. But, if I remove the Flux Tabs, it works properly like this video.
Code snippets to replicate the problem
<div>
<flux:tab.group>
<flux:tabs variant="segmented">
<flux:tab name="detail">{{ __('ticketing::ticket-view.tabs.details') }}</flux:tab>
<flux:tab name="chat">{{ __('ticketing::ticket-view.tabs.chat') }}</flux:tab>
<flux:tab name="history">{{ __('ticketing::ticket-view.tabs.history') }}</flux:tab>
</flux:tabs>
<flux:tab.panel name="detail">
<livewire:ticketing::ticket-details :ticket="$ticket" />
</flux:tab.panel>
<flux:tab.panel name="chat">
<livewire:ticketing::ticket-chat :ticket="$ticket" />
</flux:tab.panel>
<flux:tab.panel name="history">
<livewire:ticketing::ticket-history :ticket="$ticket" />
</flux:tab.panel>
</flux:tab.group>
</div>
Remove the tabs make it works.
<div>
<livewire:ticketing::ticket-details :ticket="$ticket" />
<livewire:ticketing::ticket-chat :ticket="$ticket" />
</div>
Screenshots/ screen recordings of the problem
Sorry, I can upload the 480p because of GitHub limitation upload file just 10MB.
480p-Screen.Recording.2025-12-16.at.09.34.52.mov
How do you expect it to work?
The insert link in Flux Editor should be work in Flux Tabs.
Please confirm (incomplete submissions will not be addressed)
- I have provided easy and step-by-step instructions to reproduce the bug.
- I have provided code samples as text and NOT images.
- I understand my bug report will be closed if I haven't met the criteria above.
Metadata
Metadata
Assignees
Labels
No labels