From c1fefa335d50a39a26046679e4c43407e87e4ecc Mon Sep 17 00:00:00 2001 From: Pavlo Strunkin Date: Wed, 6 Oct 2021 22:03:37 +0300 Subject: [PATCH 1/2] BuildList item. Secondary action menu is always hidden closes https://github.com/Visual-Regression-Tracker/Visual-Regression-Tracker/issues/313 --- src/components/BuildList/index.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/BuildList/index.tsx b/src/components/BuildList/index.tsx index 368efd63..43f09ff8 100644 --- a/src/components/BuildList/index.tsx +++ b/src/components/BuildList/index.tsx @@ -44,6 +44,11 @@ const useStyles = makeStyles((theme: Theme) => listItemSecondaryAction: { visibility: "hidden", }, + listItem: { + "&:hover $listItemSecondaryAction": { + visibility: "inherit", + }, + }, }) ); @@ -120,6 +125,9 @@ const BuildList: FunctionComponent = () => { onClick={() => { selectBuild(buildDispatch, build.id); }} + classes={{ + container: classes.listItem, + }} > Date: Thu, 7 Oct 2021 10:05:54 +0300 Subject: [PATCH 2/2] Update workflow.yml --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index cda4528c..06d0de55 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: ubuntu-16.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2