<ul class="list-underlined history" v-if="all.length > 0">
    <li v-for="entry in all" class="history__entry">
        <picker-stop :stop="entry.stop" class="flex-grow-1 finder__stop">
            <template v-slot:primary-action>
                <button @click="select(entry.stop, $event)" class="btn btn-action stretched-link">
                    <ui-icon icon="history" />
                </button>
            </template>
        </picker-stop>
    </li>
</ul>