From 24925faee030e7ae0127f1abe2cbb7b90ce580f7 Mon Sep 17 00:00:00 2001 From: yadhap Dahal Date: Fri, 6 Sep 2024 09:13:12 -0400 Subject: [PATCH] Removed print functionality option from asset table --- .../application/Assets/AssetsTable.js | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/Tombolo/client-reactjs/src/components/application/Assets/AssetsTable.js b/Tombolo/client-reactjs/src/components/application/Assets/AssetsTable.js index 9b692d3d..d74b0854 100644 --- a/Tombolo/client-reactjs/src/components/application/Assets/AssetsTable.js +++ b/Tombolo/client-reactjs/src/components/application/Assets/AssetsTable.js @@ -2,7 +2,7 @@ import React, { useState, useEffect } from 'react'; import { Table, message, Tooltip, Divider, Space, Typography, Button } from 'antd'; import { useHistory } from 'react-router'; import { useSelector, useDispatch } from 'react-redux'; -import { DeleteOutlined, EditOutlined, FolderOpenOutlined, FilePdfOutlined } from '@ant-design/icons'; +import { DeleteOutlined, EditOutlined, FolderOpenOutlined } from '@ant-design/icons'; import { authHeader, handleError } from '../../common/AuthHeader.js'; import MoveAssetsDialog from './MoveAssetsDialog'; @@ -323,21 +323,6 @@ function AssetsTable({ openGroup, handleEditGroup, refreshGroups }) { onClick={() => openMoveAssetDialog(record.id, record.type, record.name, selectedGroup)} /> - - }> - - getNestedAssets( - applicationId, - setSelectedAsset, - setSelectDetailsforPdfDialogVisibility, - record, - setToPrintAssets - ) - } - /> - ), },