Skip to content

Commit

Permalink
feat: Show organisation name in header (#3808)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolodato authored Apr 19, 2024
1 parent f715645 commit 10b14fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/web/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ const App = class extends Component {
fill='#9DA4AE'
/>
</span>
{'Organisation'}
Organisation <strong>{AccountStore.getOrganisation()?.name}</strong>
</NavLink>
</Row>
<Row>
Expand Down
4 changes: 4 additions & 0 deletions frontend/web/styles/project/_project-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@
}
}
.nav-link {
text-wrap: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 30em;
img {
max-height: 21px;
}
Expand Down

0 comments on commit 10b14fd

Please sign in to comment.