From 25c0c702c23799c4902f72278b84f177e3660dc7 Mon Sep 17 00:00:00 2001 From: Richard Cox Date: Tue, 6 Aug 2024 14:15:46 +0100 Subject: [PATCH 01/76] cluster list now uses resource table --- shell/components/SortableTable/index.vue | 10 ++++---- shell/pages/home.vue | 30 ++++++++++++++++++------ 2 files changed, 28 insertions(+), 12 deletions(-) diff --git a/shell/components/SortableTable/index.vue b/shell/components/SortableTable/index.vue index ce2bc64dad4..07137544fb9 100644 --- a/shell/components/SortableTable/index.vue +++ b/shell/components/SortableTable/index.vue @@ -545,9 +545,9 @@ export default { showHeaderRow() { return this.search || this.tableActions || - this.$slots['header-left']?.length || - this.$slots['header-middle']?.length || - this.$slots['header-right']?.length; + this.$scopedSlots['header-left'] || + this.$scopedSlots['header-middle'] || + this.$scopedSlots['header-right']; }, columns() { @@ -1084,14 +1084,14 @@ export default {