Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
RIT_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박권수
2021-08-22 16:51:58 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cd1bb6c3aa18a451b9fe1e07297624bbe6278297
cd1bb6c3
1 parent
f71dd210
styled. no result message
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
web/src/views/main/manager/ManagerMenuPresenter.tsx
web/src/views/main/manager/ManagerMenuStyled.tsx
web/src/views/main/manager/ManagerMenuPresenter.tsx
View file @
cd1bb6c
...
...
@@ -131,6 +131,7 @@ const ManagerMenuPresenter = (props : ManagerMenuProps) => {
</styled.ContentInfo>
</styled.ContentInfoWrapper>
{
props.doctorRegReqList.length ?
props.doctorRegReqList.map((doctor : any) => {
return (
<styled.EachContentWrapper
...
...
@@ -154,7 +155,10 @@ const ManagerMenuPresenter = (props : ManagerMenuProps) => {
</styled.EachContentNm>
</styled.EachContentWrapper>
)
})
}) :
<styled.NothingWrapper>
🤔검색 결과가 없습니다.
</styled.NothingWrapper>
}
</styled.ContentBody>
</styled.ContentWrapper>
...
...
web/src/views/main/manager/ManagerMenuStyled.tsx
View file @
cd1bb6c
...
...
@@ -415,4 +415,15 @@ export const EachContentNm = styled.div<{isLast : boolean}> `
border-right : ${props => props.isLast ? '1px solid transparent' : '1px solid #ddd'};
`;
export const NothingWrapper = styled.div `
height : 100%;
width : 100%;
display : flex;
justify-content : center;
align-items : center;
color : #a0a0a0;
`;
\ No newline at end of file
...
...
Please
register
or
login
to post a comment