From ef87651b3a6f0e9c99e384fcffc47708fe3f12a0 Mon Sep 17 00:00:00 2001 From: gopienkonikita Date: Thu, 10 Feb 2022 11:25:00 +0300 Subject: [PATCH] Fixed Bug 55254 - Client.Files. Fixed the change of the cursor to the "palm" --- .../src/pages/Home/Section/Body/RowsView/SimpleFilesRow.js | 2 +- .../Client/src/pages/Home/Section/Body/TableView/TableRow.js | 2 +- .../cursor.palm.svg => public/images/cursor.palm.react.svg | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename products/ASC.Files/Client/public/images/cursor.palm.svg => public/images/cursor.palm.react.svg (100%) diff --git a/products/ASC.Files/Client/src/pages/Home/Section/Body/RowsView/SimpleFilesRow.js b/products/ASC.Files/Client/src/pages/Home/Section/Body/RowsView/SimpleFilesRow.js index 638fb0c9209..26cad65ece4 100644 --- a/products/ASC.Files/Client/src/pages/Home/Section/Body/RowsView/SimpleFilesRow.js +++ b/products/ASC.Files/Client/src/pages/Home/Section/Body/RowsView/SimpleFilesRow.js @@ -40,7 +40,7 @@ const StyledSimpleFilesRow = styled(Row)` cursor: ${(props) => !props.isThirdPartyFolder && (props.checked || props.isActive) && - "url(images/cursor.palm.svg), auto"}; + "url(/static/images/cursor.palm.react.svg), auto"}; ${(props) => props.inProgress && css` diff --git a/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/TableRow.js b/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/TableRow.js index 673c3cf6814..f7c49ec0ca1 100644 --- a/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/TableRow.js +++ b/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/TableRow.js @@ -53,7 +53,7 @@ const StyledTableRow = styled(TableRow)` cursor: ${(props) => !props.isThirdPartyFolder && (props.checked || props.isActive) && - "url(images/cursor.palm.svg), auto"}; + "url(/static/images/cursor.palm.react.svg), auto"}; ${(props) => props.inProgress && diff --git a/products/ASC.Files/Client/public/images/cursor.palm.svg b/public/images/cursor.palm.react.svg similarity index 100% rename from products/ASC.Files/Client/public/images/cursor.palm.svg rename to public/images/cursor.palm.react.svg