Skip to content

Commit 5a0f30d

Browse files
committed
fix build issues
Signed-off-by: aabidsofi19 <[email protected]>
1 parent 74c96c5 commit 5a0f30d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/custom/CatalogDesignTable/DesignTableColumnConfig.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export const createDesignsColumnsConfig = ({
248248
<L5DeleteIcon />
249249
)
250250
}
251-
].filter((a) => a.hidden != true);
251+
].filter((a) => a?.hidden != true);
252252

253253
const publishAction = {
254254
title: 'Publish',
@@ -265,6 +265,7 @@ export const createDesignsColumnsConfig = ({
265265
};
266266

267267
const cloneAction = {
268+
hidden: false,
268269
title: 'Clone',
269270
onClick: () => handleClone(rowData?.name, rowData?.id),
270271
icon: <CopyIcon width={24} height={24} fill={theme?.palette.icon.secondary} />

0 commit comments

Comments
 (0)