Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:rimcloud/rimdrive-app
Browse files Browse the repository at this point in the history
  • Loading branch information
newsyhan committed Nov 6, 2019
2 parents 8da86ea + f6e53ea commit 67329fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/parts/UserListComp.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class UserListComp extends Component {
})}
</TableBody>
}
{(userListData && userListData.size > 0) &&
{(userListData && userListData.size < 1) &&
<TableBody>
<TableRow hover className={classes.fileTableRow} >
<TableCell component="th" align="center" colSpan="4">사용자가 없습니다.</TableCell>
Expand Down
2 changes: 1 addition & 1 deletion src/modules/FileModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const getDriveFolderList = (param) => dispatch => {
if(response.data && response.data.status && response.data.status.result === 'SUCCESS') {
folderList = (fromJS(response.data.data.map(n => {n['children'] = []; return n;})).unshift(fromJS({
fileId: 10,
name: '__ROOTFOLDER__',
name: '개인저장소',
path: '/',
children: []
})));
Expand Down

0 comments on commit 67329fc

Please sign in to comment.