Skip to content

Commit

Permalink
Fix file select modal styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jchuahtacc committed Jun 27, 2022
1 parent b5b7741 commit 492aac1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const FileExplorer: React.FC<FileExplorerProps> = ({
/>
) : (
<SystemListing
className={styles['nav-list']}
className={`${styles['nav-list']}`}
onNavigate={onSystemNavigate}
/>
)}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { GenericModal } from 'tapis-ui/_common';
import { FileExplorer } from 'tapis-ui/components/files';
import { SelectMode } from 'tapis-ui/components/files/FileListing/FileListing';
import { Button } from 'reactstrap';
import styles from './FileSelectModal.module.scss';

type FileSelectModalProps = {
systemId?: string;
Expand Down Expand Up @@ -111,7 +110,6 @@ const FileSelectModal: React.FC<FileSelectModalProps> = ({
onNavigate={fileExplorerNavigateCallback}
fields={['size', 'lastModified']}
selectedFiles={selectedFiles}
className={styles['file-list']}
/>
);

Expand Down

0 comments on commit 492aac1

Please sign in to comment.