diff --git a/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.module.scss b/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.module.scss index a8665c6f..7f84cd61 100644 --- a/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.module.scss +++ b/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.module.scss @@ -4,3 +4,15 @@ font-size: 12px !important; line-height: 8px; } + +.Table { + :global { + .p-sortable-column > .p-column-header-content > span:last-child { + transform: scale(0.7); + + & > svg { + margin-left: 4px; + } + } + } +} diff --git a/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx b/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx index 61db0e3f..6ac3f6ce 100644 --- a/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx +++ b/assets/js/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignaturesContent/SystemSignaturesContent.tsx @@ -25,6 +25,7 @@ import { renderName, renderTimeLeft, } from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/renders'; +// import { PrimeIcons } from 'primereact/api'; interface SystemSignaturesContentProps { systemId: string; @@ -50,7 +51,7 @@ export const SystemSignaturesContent = ({ systemId, settings }: SystemSignatures const handleResize = useCallback(() => { if (tableRef.current) { const tableWidth = tableRef.current.offsetWidth; - const otherColumnsWidth = 265; + const otherColumnsWidth = 276; const availableWidth = tableWidth - otherColumnsWidth; setNameColumnWidth(`${availableWidth}px`); } @@ -159,6 +160,16 @@ export const SystemSignaturesContent = ({ systemId, settings }: SystemSignatures setHoveredSig(null); }, []); + // const renderToolbar = (/*row: SystemSignature*/) => { + // return ( + //