diff --git a/ADRs/007_Table_component.md b/ADRs/007_Table_component.md
index 40fc0d8f..30be59cd 100644
--- a/ADRs/007_Table_component.md
+++ b/ADRs/007_Table_component.md
@@ -1,6 +1,6 @@
# 007. Table component
-Last update: 19.09.2022
+Last update: 29.11.2023
## Background
@@ -63,6 +63,9 @@ Challenges
We decided for option two as the ability to pass children components is a must-have. Hopefully if that can be solved
in the future we may be able to have a table-data component that encapsulates better the table.
+The flexbox model is only adapted for tables that require the colspan feature as not all existing features (text truncation and expansion on hover, expanding column sizes) can be realized while applying flexbox. This also saves performance as dynamic
+calculation of cell width via JavaScript could be a performance issue in larger tables.
+
### Note
We implemented the table using shadow dom for consistency and to support slots, but most of the classes are
declared in the host elements meaning they live still in the light-dom and can be overwritten.
diff --git a/packages/core-components/src/components/table/stories.data.ts b/packages/core-components/src/components/table/stories.data.ts
index e1a59ba5..65dc080d 100644
--- a/packages/core-components/src/components/table/stories.data.ts
+++ b/packages/core-components/src/components/table/stories.data.ts
@@ -32,7 +32,6 @@ export const longSampleData = {
'Column 4',
'Column 5',
'Column 6',
- 'Column 7',
],
rows: [
[
diff --git a/packages/core-components/src/components/table/table.docs.mdx b/packages/core-components/src/components/table/table.docs.mdx
index 958b873f..27393363 100644
--- a/packages/core-components/src/components/table/table.docs.mdx
+++ b/packages/core-components/src/components/table/table.docs.mdx
@@ -74,6 +74,23 @@ example, parent size is 400px, and text is truncated.