Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
37d4c685
Commit
37d4c685
authored
9 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Patches
Plain Diff
fixes #1097 by applying cursor-pointer on our actions dropdown items.
parent
ec9c4047
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
resources/frontend_client/app/admin/people/components/UserActionsSelect.react.js
+4
-4
4 additions, 4 deletions
...nt/app/admin/people/components/UserActionsSelect.react.js
with
4 additions
and
4 deletions
resources/frontend_client/app/admin/people/components/UserActionsSelect.react.js
+
4
−
4
View file @
37d4c685
...
...
@@ -52,15 +52,15 @@ export default class UserActionsSelect extends Component {
tetherOptions
=
{
tetherOptions
}
triggerElement
=
{
<
span
className
=
"
text-grey-1
"
><
Icon
name
=
{
'
ellipsis
'
}
><
/Icon></
span
>
}
>
<
ul
className
=
"
UserActionsSelect
"
>
<
li
className
=
"
py1 px2 bg-brand-hover text-white-hover
"
onClick
=
{
this
.
onEditDetails
.
bind
(
this
)}
>
Edit
Details
<
/li
>
<
li
className
=
"
py1 px2 bg-brand-hover text-white-hover
cursor-pointer
"
onClick
=
{
this
.
onEditDetails
.
bind
(
this
)}
>
Edit
Details
<
/li
>
{
(
user
.
last_login
===
null
&&
MetabaseSettings
.
isEmailConfigured
())
?
<
li
className
=
"
py1 px2 bg-brand-hover text-white-hover
"
onClick
=
{
this
.
onResendInvite
.
bind
(
this
)}
>
Re
-
send
Invite
<
/li
>
<
li
className
=
"
py1 px2 bg-brand-hover text-white-hover
cursor-pointer
"
onClick
=
{
this
.
onResendInvite
.
bind
(
this
)}
>
Re
-
send
Invite
<
/li
>
:
<
li
className
=
"
py1 px2 bg-brand-hover text-white-hover
"
onClick
=
{
this
.
onResetPassword
.
bind
(
this
)}
>
Reset
Password
<
/li
>
<
li
className
=
"
py1 px2 bg-brand-hover text-white-hover
cursor-pointer
"
onClick
=
{
this
.
onResetPassword
.
bind
(
this
)}
>
Reset
Password
<
/li
>
}
<
li
className
=
"
mt1 p2 border-top bg-error-hover text-error text-white-hover
"
onClick
=
{
this
.
onRemoveUser
.
bind
(
this
)}
>
Remove
<
/li
>
<
li
className
=
"
mt1 p2 border-top bg-error-hover text-error text-white-hover
cursor-pointer
"
onClick
=
{
this
.
onRemoveUser
.
bind
(
this
)}
>
Remove
<
/li
>
<
/ul
>
<
/PopoverWithTrigger
>
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment