File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
frontend/express/public/core/app-management/javascripts Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 11## Version 24.05.25
22Fixes:
3+ - [ app-management] Unescaping HTML for created/updated application names
34- [ countly-edge] Add import from Countly Edge Server
45- [ languages] Calculated total users percentage correctly
56
Original file line number Diff line number Diff line change 386386 countlyGlobal . admin_apps [ data . _id ] = data ;
387387 Backbone . history . appIds . push ( data . _id + "" ) ;
388388 countlyGlobal . apps [ data . _id ] . image = "appimages/" + data . _id + ".png?" + Date . now ( ) . toString ( ) ;
389+ self . apps [ data . _id ] . name = countlyCommon . unescapeHtml ( data . name ) ;
389390 self . appList . push ( {
390391 value : data . _id + "" ,
391392 label : data . name
448449 countlyGlobal . admin_apps [ self . selectedApp ] [ modAttr ] = data [ modAttr ] ;
449450 }
450451 countlyGlobal . apps [ self . selectedApp ] . label = data . name ;
452+ self . apps [ self . selectedApp ] . name = countlyCommon . unescapeHtml ( data . name ) ;
451453 for ( var i = 0 ; i < self . appList . length ; i ++ ) {
452454 if ( self . appList [ i ] . value === self . selectedApp ) {
453455 self . appList [ i ] . label = data . name ;
You can’t perform that action at this time.
0 commit comments