This commit is contained in:
tree 2022-05-18 02:50:51 +02:00
rodič a135980e8a
revize 4c825956ce
2 změnil soubory, kde provedl 2 přidání a 2 odebrání

Zobrazit soubor

@ -135,7 +135,7 @@
<div class="flex flex-wrap gap-1">
<select class="border border-blue-web rounded-md p-1.5 text-blue-web bg-white" bind:value={planNumber}>
{#each $bundle.spec['schedule-candidates'] as p, i}
<option value={i}>plan-{i} [{[ 'score', 'thc:themeCrossing', 'tgc:tagsCrossing' ].map(key => { const [title,rkey] = key.split(':'); return `${title}:${Math.round(p.metrics[rkey || title]*1000)/1000}` }).join(', ')}]</option>
<option value={i}>#{i} [{[ 'score', 'thc:themeCrossing', 'tgc:tagsCrossing' ].map(key => { const [title,rkey] = key.split(':'); return `${title}:${Math.round(p.metrics[rkey || title]*1000)/1000}` }).join(', ')}]</option>
{/each}
</select>
</div>

Zobrazit soubor

@ -21,7 +21,7 @@
? [
{ name: "Hlavní přednášející (" + leadSpeakersCount + ")", id: "top" },
{ name: "Vše", id: null },
].concat(currentBundle.spec.tracks)
].concat(currentBundle.spec.tracks.filter(t => t.hidden === undefined || t.hidden !== true))
: null;
function changeTrack(tId) {