-
-
Notifications
You must be signed in to change notification settings - Fork 12
[Formatting Bug]: operator incorrectly formatted #314
Copy link
Copy link
Closed as not planned
Labels
bugSomething isn't workingSomething isn't working
Description
Version
1.15.3
Template before formatting
<flux:navlist variant="outline">
<flux:navlist.group heading="Platform" class="grid">
<flux:navlist.item icon="home" :href="route('user.dashboard')"
:current="request()->routeIs('user.dashboard')" wire:navigate>
User Dashboard
</flux:navlist.item>
</flux:navlist.group>
</flux:navlist>Template after formatting
<flux:navlist variant="outline">
<flux:navlist.group heading="Platform" class="grid">
<flux:navlist.item icon="home" :href="route('user.dashboard')"
:current="request() - > routeIs('user.dashboard')" wire:navigate>
User Dashboard
</flux:navlist.item>
</flux:navlist.group>
</flux:navlist>Expected Behaviour
<flux:navlist variant="outline">
<flux:navlist.group heading="Platform" class="grid">
<flux:navlist.item icon="home" :href="route('user.dashboard')"
:current="request()->routeIs('user.dashboard')" wire:navigate>
User Dashboard
</flux:navlist.item>
</flux:navlist.group>
</flux:navlist>
Relevant log output
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working