🐛 Forgot console log and max width

This commit is contained in:
Maxime Lalo 2023-04-27 11:42:19 +02:00
parent 2284fc4848
commit c103f44570
2 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,6 @@ export default class UserFolder extends React.Component<IProps, IState> {
this.closeComponent = this.closeComponent.bind(this); this.closeComponent = this.closeComponent.bind(this);
} }
public override render(): JSX.Element { public override render(): JSX.Element {
console.log(this.props.folder.documents);
const documentsAsked: Document[] | null = this.getDocumentsByStatus("ASKED"); const documentsAsked: Document[] | null = this.getDocumentsByStatus("ASKED");
const otherDocuments: Document[] | null = this.getValidatedAndPendindDocuments(); const otherDocuments: Document[] | null = this.getValidatedAndPendindDocuments();
const redirectPath = Module.getInstance() const redirectPath = Module.getInstance()

View File

@ -26,6 +26,8 @@
} }
.file-container{ .file-container{
max-width: 1000px;
margin: auto;
min-height: 700px; min-height: 700px;
flex: 1; flex: 1;
} }