-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: modify permissions tab UI #790
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f83e587
Remove 'Display String' column
ElinorW 36b03eb
alter permission message
ElinorW fca519c
change wording used
ElinorW cc68ca6
alter column sizes
ElinorW f120d87
check authentication from redux state
ElinorW f730fd1
Merge branch 'dev' into fix/modify-permissions-ui
ElinorW File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -293,7 +293,7 @@ | |
"Status": "Status", | ||
"Admin consent required": "Admin consent required", | ||
"Consent": "Consent", | ||
"permissions required to run the query": "The following permissions are required to run the query. To consent to the permissions, click Consent.", | ||
"permissions required to run the query": "One of the following permissions is required to run the query. Select a permission and click Consent.", | ||
"tab": " tab", | ||
"View the": " View the", | ||
"viewing a cached set": "You are viewing a cached set of samples because of a network connection failure.", | ||
|
@@ -306,7 +306,7 @@ | |
"Snippet not available": "Snippet not available", | ||
"Select different permissions": "To try out different Microsoft Graph API endpoints, choose the permissions, and then click Consent.", | ||
"Search permissions": "Search permissions", | ||
"permissions not found": "We did not find permissions", | ||
"permissions not found": "We did not find permissions. To view a list of all available permissions, click on the Settings gearbox and then click on Select Permissions.", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is gearbox a thing people understand? just never seen it before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will rename that to settings icon |
||
"selected": "selected", | ||
"Search sample queries": "Search sample queries", | ||
"Search history items": "Search history items", | ||
|
@@ -326,5 +326,6 @@ | |
"HTTP request method option": "HTTP request method option", | ||
"Microsoft Graph API Version option": "Microsoft Graph API Version option", | ||
"Query Sample Input": "Query sample input", | ||
"popup blocked, allow pop-up windows in your browser": "popup blocked, allow pop-up windows in your browser" | ||
} | ||
"popup blocked, allow pop-up windows in your browser": "popup blocked, allow pop-up windows in your browser", | ||
"sign in to consent to permissions": "One of the following permissions is required to run the query. Sign in with an account that can consent to the permission you will choose." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the useSelector React Hook may help to reduce passing too many arguments into the TabList component since it has access to the redux state. This can be used to pick up whether the user is logged in or not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah okay perfect! Thanks for this!