This repository was archived by the owner on May 3, 2024. It is now read-only.
File tree 3 files changed +7
-5
lines changed
2-Authorization-I/1-call-graph
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ Function ConfigureApplications
147
147
$spaAadApplication = New-MgApplication - DisplayName " ms-identity-react-c2s1" `
148
148
- Spa `
149
149
@ { `
150
- RedirectUris = " http://localhost:3000/" , " http://localhost:3000/redirect" ; `
150
+ RedirectUris = " http://localhost:3000/" , " http://localhost:3000/redirect.html " ; `
151
151
} `
152
152
- SignInAudience AzureADMyOrg `
153
153
# end of command
Original file line number Diff line number Diff line change @@ -130,17 +130,18 @@ export const ContactsData = (props) => {
130
130
</ div >
131
131
</ Row >
132
132
< Row className = "d-flex flex-row" >
133
- { props . graphContacts . value . length === 0 ?
133
+ { ! props . graphContacts . value || props . graphContacts . value . length === 0 ? (
134
134
< p className = "text-center" > You have 0 contacts</ p >
135
- :
135
+ ) : (
136
136
props . graphContacts . value . map ( ( contact ) => (
137
137
< Card className = "card" key = { contact . id } >
138
138
< Card . Body >
139
139
< Card . Title > { contact . displayName } </ Card . Title >
140
140
< Card . Text > { contact . personalNotes } </ Card . Text >
141
141
</ Card . Body >
142
142
</ Card >
143
- ) ) }
143
+ ) )
144
+ ) }
144
145
</ Row >
145
146
</ Container >
146
147
) ;
Original file line number Diff line number Diff line change 19
19
}
20
20
21
21
.navbarButton {
22
- color : # fff !important
22
+ color : # fff !important ;
23
+ padding : .5rem 1rem !important ;
23
24
}
24
25
25
26
.tableColumn {
You can’t perform that action at this time.
0 commit comments