diff --git a/frontend/src/pages/my-libs/mylib-repo-list-item.js b/frontend/src/pages/my-libs/mylib-repo-list-item.js index b619017c21..872aaa9155 100644 --- a/frontend/src/pages/my-libs/mylib-repo-list-item.js +++ b/frontend/src/pages/my-libs/mylib-repo-list-item.js @@ -56,6 +56,14 @@ class MylibRepoListItem extends React.Component { }; } + onFocus = () => { + if (!this.props.isItemFreezed) { + this.setState({ + isOpIconShow: true + }); + } + } + onMouseEnter = () => { if (!this.props.isItemFreezed) { this.setState({ @@ -277,7 +285,7 @@ class MylibRepoListItem extends React.Component { let iconTitle = Utils.getLibIconTitle(repo); let repoURL = `${siteRoot}library/${repo.repo_id}/${Utils.encodePath(repo.repo_name)}/`; return ( - +