kin: KIN-FIX-001 Исправить ImportError '_next_task_id' в test_followup.py
This commit is contained in:
parent
993362341b
commit
d627c1ba77
1 changed files with 45 additions and 26 deletions
|
|
@ -357,6 +357,25 @@ async function addDecision() {
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- Category filter -->
|
||||||
|
<div v-if="taskCategories.length" class="flex gap-1 flex-wrap items-center">
|
||||||
|
<button @click="selectedCategory = ''"
|
||||||
|
class="px-2 py-0.5 text-xs rounded border transition-colors"
|
||||||
|
:class="!selectedCategory
|
||||||
|
? 'bg-gray-700/60 text-gray-300 border-gray-600'
|
||||||
|
: 'bg-gray-900 text-gray-600 border-gray-800 hover:text-gray-400 hover:border-gray-700'"
|
||||||
|
>Все</button>
|
||||||
|
<button v-for="cat in taskCategories" :key="cat"
|
||||||
|
@click="selectedCategory = cat"
|
||||||
|
class="px-2 py-0.5 text-xs rounded border transition-colors"
|
||||||
|
:class="selectedCategory === cat
|
||||||
|
? 'opacity-100 ring-1 ring-offset-0'
|
||||||
|
: 'opacity-60 hover:opacity-100'"
|
||||||
|
>
|
||||||
|
<Badge :text="cat" :color="CATEGORY_COLORS[cat] || 'gray'" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- Manual escalation tasks -->
|
<!-- Manual escalation tasks -->
|
||||||
<div v-if="manualEscalationTasks.length" class="mb-4">
|
<div v-if="manualEscalationTasks.length" class="mb-4">
|
||||||
<div class="flex items-center gap-2 mb-2">
|
<div class="flex items-center gap-2 mb-2">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue