tracks select : track selection inside groups working without comparison mode enabled
This commit is contained in:
parent
1de315cbcd
commit
0c5c10791e
4 changed files with 101 additions and 41 deletions
|
|
@ -34,6 +34,7 @@ tabs:
|
|||
type: pages
|
||||
layout: cards
|
||||
template: track
|
||||
info: "{{ page.group }}"
|
||||
- width: 1/2
|
||||
sections:
|
||||
fieldsSection:
|
||||
|
|
|
|||
|
|
@ -110,7 +110,11 @@ class ProjectPage extends NotificationsPage {
|
|||
$trackData['files'][] = getFileData($view);
|
||||
}
|
||||
|
||||
$files['dynamic'][] = $trackData;
|
||||
if ($track->group()->isNotEmpty()) {
|
||||
$files['dynamic'][$track->group()->value()][] = $trackData;
|
||||
} else {
|
||||
$files['dynamic']['independantTracks'][] = $trackData;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue