0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

🐛 Fix invalid link on workspace header (presence component).

This commit is contained in:
Andrey Antukh 2021-06-17 09:09:28 +02:00 committed by Andrés Moya
parent 376d0663c2
commit 41d05d6de0
3 changed files with 2 additions and 3 deletions

View file

@ -17,6 +17,7 @@
- Remove unnecesary redirect from history when user goes to workspace from dashboard [Taiga 1820](https://tree.taiga.io/project/penpot/issue/1820).
- Fix tooltip position on view application [Taiga 1819](https://tree.taiga.io/project/penpot/issue/1819).
- Fix dashboard navigation on moving file to other team [Taiga 1817](https://tree.taiga.io/project/penpot/issue/1817).
- Fix workspace header presence styles and invalid link [Taiga 1813](https://tree.taiga.io/project/penpot/issue/1813).
### :arrow_up: Deps updates
### :boom: Breaking changes

View file

@ -179,7 +179,6 @@
.active-users {
align-items: center;
cursor: pointer;
display: flex;
margin: 0;

View file

@ -17,8 +17,7 @@
(mf/defc session-widget
[{:keys [session self? profile] :as props}]
[:li.tooltip.tooltip-bottom
{:alt (:fullname profile)
:on-click (when self? (st/emitf (rt/navigate :settings/profile)))}
{:alt (:fullname profile)}
[:img {:style {:border-color (:color session)}
:src (cfg/resolve-profile-photo-url profile)}]])