filenameCell.tsx 360 B

12345678910111213
  1. import {OverflowEllipsisTextContainer} from 'sentry/views/starfish/components/textAlign';
  2. type Props = {
  3. url?: string;
  4. };
  5. function FilenameCell(props: Props) {
  6. const {url} = props;
  7. const filename = url?.split('/').pop()?.split('?')[0];
  8. return <OverflowEllipsisTextContainer>{filename}</OverflowEllipsisTextContainer>;
  9. }
  10. export default FilenameCell;