Line between navigation child items do not appear
I'm using version 3.1.23 currently.
I have 3 resources:
Tickets (Parent)
Ticket Messages (Child #1 to Tickets)
Slas (Child #2 to Tickets)
Looking at the demo, the 2 child items Brands and Category under Products are connected with a line between the 2 dots. It doesn't seem to show on my app. What could possibly be wrong?
Code for the Parent Resource:
protected static ?string $navigationGroup = 'Trouble Ticket Management';
protected static ?string $navigationIcon = 'heroicon-o-ticket';
protected static ?string $navigationLabel = 'Tickets';
protected static ?int $navigationSort = 0;
Code for the Child Resource:
protected static ?string $navigationGroup = 'Trouble Ticket Management';
protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';
protected static ?string $navigationParentItem = 'Tickets';
protected static ?int $navigationSort = 1;
Code for the second Child Resource:
protected static ?string $navigationGroup = 'Trouble Ticket Management';
protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';
protected static ?string $navigationParentItem = 'Tickets';
protected static ?int $navigationSort = 2;
1 Reply
Solved. Did a
composer update
for version 3.1.28 and refreshed the site. The line is back. It was working on 3.1.15. Broke at 3.1.23. And is working fine with any code changes on my part in version 3.1.28.