diff --git a/lib/KTable/index.vue b/lib/KTable/index.vue index f81a89d73..b8546f56c 100644 --- a/lib/KTable/index.vue +++ b/lib/KTable/index.vue @@ -26,7 +26,8 @@ :style="[getHeaderStyle(header), isColumnSortActive(index) ? { color: $themeBrand.primary.v_1000 } : { color: $themePalette.grey.v_800 }, { backgroundColor: $themePalette.white } , - isColumnFocused(index) ? { backgroundColor: $themePalette.grey.v_50 } : {}]" + isColumnFocused(index) ? { backgroundColor: $themePalette.grey.v_50 } : {}, + { textAlign: getTextAlign(header.dataType) }]" role="columnheader" data-focus="true" :aria-colindex="index + 1" @@ -90,7 +91,12 @@