This repository was archived by the owner on May 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
ui/src/views/organizations Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.10.0
4+
5+ ** Features & changes:**
6+
7+ * Added frame logs tab to node to display all uplink and downlink
8+ frames of a given node. Note: This requires
9+ [ LoRa Server] ( https://docs.loraserver.io/loraserver/ ) 0.18.0.
10+ * Updated organization, application and node navigation in UI.
11+
312## 0.9.1
413
514** Bugfixes:**
Original file line number Diff line number Diff line change 1515 - changelog.md
1616
1717extra :
18- version : ' 0.9.1 '
18+ version : ' 0.10.0 '
1919 github :
2020 download_release : true
2121
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class OrganizationLayout extends Component {
8282 < ul className = "nav nav-tabs" >
8383 < li role = "presentation" className = { ( activeTab === "" || activeTab . startsWith ( "applications" ) ) ? 'active' : '' } > < Link to = { `/organizations/${ this . props . params . organizationID } ` } > Applications</ Link > </ li >
8484 < li role = "presentation" className = { ( activeTab . startsWith ( "gateways" ) ? 'active' : '' ) + ( this . state . organization . canHaveGateways ? '' : 'hidden' ) } > < Link to = { `/organizations/${ this . props . params . organizationID } /gateways` } > Gateways</ Link > </ li >
85- < li role = "presentation" className = { ( activeTab === "edit" ? 'active' : '' ) + ( this . state . isGlobalAdmin ? '' : 'hidden' ) } > < Link to = { `/organizations/${ this . props . params . organizationID } /edit` } > Organization settings </ Link > </ li >
85+ < li role = "presentation" className = { ( activeTab === "edit" ? 'active' : '' ) + ( this . state . isGlobalAdmin ? '' : 'hidden' ) } > < Link to = { `/organizations/${ this . props . params . organizationID } /edit` } > Organization configuration </ Link > </ li >
8686 < li role = "presentation" className = { ( activeTab . startsWith ( "users" ) ? 'active' : '' ) + ( this . state . isAdmin ? '' : 'hidden' ) } > < Link to = { `/organizations/${ this . props . params . organizationID } /users` } > Organization users</ Link > </ li >
8787 </ ul >
8888 < hr />
You can’t perform that action at this time.
0 commit comments