From 2b3d2ed061ab28c3d116c3247ec3e98a920807a8 Mon Sep 17 00:00:00 2001 From: Alex Culliere Date: Mon, 15 Feb 2021 13:21:49 +0200 Subject: [PATCH] Rename component property to Signed-off-by: Alex Culliere --- .../components/item-object-list/item-list-layout.tsx | 8 ++++---- .../components/kube-object/kube-object-list-layout.tsx | 2 +- src/renderer/components/table/table-cell.tsx | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/renderer/components/item-object-list/item-list-layout.tsx b/src/renderer/components/item-object-list/item-list-layout.tsx index 127d86c322..cedaa1fde9 100644 --- a/src/renderer/components/item-object-list/item-list-layout.tsx +++ b/src/renderer/components/item-object-list/item-list-layout.tsx @@ -44,7 +44,7 @@ export interface ItemListLayoutProps { preloadStores?: boolean; isClusterScoped?: boolean; hideFilters?: boolean; - resizable?: boolean; + isResizable?: boolean; searchFilters?: SearchFilter[]; /** @deprecated */ filterItems?: ItemsFilter[]; @@ -232,7 +232,7 @@ export class ItemListLayout extends React.Component; + return ; } }) } @@ -410,7 +410,7 @@ export class ItemListLayout extends React.Component { id?: string; // used for configuration visibility of columns className?: string; title?: ReactNode; - resizable?: boolean; // allow resizing + isResizable?: boolean; // allow resizing size?: number; // set horizontal size checkbox?: boolean; // render cell with a checkbox isChecked?: boolean; // mark checkbox as checked or not @@ -120,7 +120,7 @@ export class TableCell extends React.Component