diff --git a/src/views/Project.vue b/src/views/Project.vue index dfc267c..cec2180 100644 --- a/src/views/Project.vue +++ b/src/views/Project.vue @@ -119,7 +119,6 @@ function getCellValue(userstory: Userstory, header: TableHeader): string | numbe const attributes = dataStore.userstoryAttributesMap.get(userstory.id); if (attributes) { - // Ключи для кастомных полей приходят как строки const attrValue = attributes[header.attributeId.toString()]; if (attrValue === null) return null; @@ -151,4 +150,7 @@ function getCellValue(userstory: Userstory, header: TableHeader): string | numbe table thead tr th { font-weight: bold; } +table thead tr th:hover { + background-color: var(--vt-c-black-soft); +}