File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ def create_app(config, selenium=False):
9090 # UI configuration
9191 # UI version DO NOT modify it
9292
93- app .config ['UIVERSION' ] = '2.2'
93+ app .config ['UIVERSION' ] = '2.2.1 '
9494
9595 # number of milliseconds to query FTS for connected Users, health, a System status
9696 app .config ['USERINTERVAL' ] = '180000' ;
Original file line number Diff line number Diff line change @@ -92,10 +92,10 @@ <h5 class="title" style="font-size: 14px; color: #278aed">[EDIT PROFILE]</h5>
9292 const changeUserDetail = ( ) => {
9393 console . log ( 'running Change User detail' )
9494 var updatedUserDetails = { }
95- updatedUserDetails . password = document . getElementById ( 'password' ) . value ;
96- updatedUserDetails . token = document . getElementById ( 'token' ) . value ;
95+ updatedUserDetails . Password = document . getElementById ( 'password' ) . value ;
96+ updatedUserDetails . Token = document . getElementById ( 'token' ) . value ;
9797 if ( document . getElementById ( 'group' ) !== null ) {
98- updatedUserDetails . group = document . getElementById ( 'group' ) . value ;
98+ updatedUserDetails . Group = document . getElementById ( 'group' ) . value ;
9999 }
100100 updatedUserDetails . uid = "{{ user_id }}"
101101 socket . emit ( "updateSystemUser" , JSON . stringify ( { "systemUsers" : [ updatedUserDetails ] } ) )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[tool .poetry ]
66name = " freetakserver-ui"
7- version = " 2.2"
7+ version = " 2.2.1 "
88description = " an optional UI for FreeTAKServer"
99authors = [" FreeTAKTeam <FreeTakTeam@gmail.com>" ]
1010readme = " README.md"
You can’t perform that action at this time.
0 commit comments