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 +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.9.1
4+
5+ ** Bugfixes:**
6+
7+ * Fix ABP sesstings not editable by organization admin
8+ ([ #85 ] ( https://github.com/brocaar/lora-app-server/issues/85 ) )
9+
310## 0.9.0
411
512** Features & Changes:**
Original file line number Diff line number Diff line change 1515 - changelog.md
1616
1717extra :
18- version : ' 0.9.0 '
18+ version : ' 0.9.1 '
1919 github :
2020 download_release : true
2121
Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ class ActivateNode extends Component {
3737 } ) ;
3838
3939 this . setState ( {
40- isApplicationAdmin : ( SessionStore . isAdmin ( ) || SessionStore . isApplicationAdmin ( this . props . params . applicationID ) ) ,
40+ isApplicationAdmin : ( SessionStore . isAdmin ( ) || SessionStore . isOrganizationAdmin ( this . props . params . organizationID ) || SessionStore . isApplicationAdmin ( this . props . params . applicationID ) ) ,
4141 } ) ;
4242
4343 SessionStore . on ( "change" , ( ) => {
4444 this . setState ( {
45- isApplicationAdmin : ( SessionStore . isAdmin ( ) || SessionStore . isApplicationAdmin ( this . props . params . applicationID ) ) ,
45+ isApplicationAdmin : ( SessionStore . isAdmin ( ) || SessionStore . isOrganizationAdmin ( this . props . params . organizationID ) || SessionStore . isApplicationAdmin ( this . props . params . applicationID ) ) ,
4646 } ) ;
4747 } ) ;
4848 }
You can’t perform that action at this time.
0 commit comments