Skip to content

feat: add app sharing icon and tooltip #4556

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

Merged
merged 2 commits into from
Oct 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update site/src/components/AppLink/AppLink.tsx
Co-authored-by: Joe Previte <jjprevite@gmail.com>
  • Loading branch information
deansheather and jsjoeio authored Oct 14, 2022
commit 2553260f60c330e2c9310a62e1a34671cc6ebd94
2 changes: 1 addition & 1 deletion site/src/components/AppLink/AppLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const AppLink: FC<PropsWithChildren<AppLinkProps>> = ({
)

let shareIcon = <LockOutlinedIcon />
let shareTooltip = "This app is private, only you can access it"
let shareTooltip = "Private, only accessible by you"
if (appSharingLevel === "authenticated") {
shareIcon = <GroupOutlinedIcon />
shareTooltip = "Shared with all authenticated users"
Expand Down