File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
src/ServicePulse.Host/app/js/views Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 7474 vm . loadingData = false ;
7575 } ;
7676
77- var saveSelectedArchiveGroup = ( amount , unit ) => {
77+ var saveSelectedArchiveGroup = function ( amount , unit ) {
7878 $cookies . put ( 'archive_amount' , amount ) ;
7979 $cookies . put ( 'archive_unit' , unit ) ;
8080 } ;
8181
82- var getSelectedArchiveGroup = ( ) => {
82+ var getSelectedArchiveGroup = function ( ) {
8383 var amount = $cookies . get ( "archive_amount" ) ;
8484 var unit = $cookies . get ( "archive_unit" ) ;
8585
Original file line number Diff line number Diff line change 111111 toastService . showInfo ( messageId + ' copied to clipboard' ) ;
112112 } ;
113113
114-
115-
116114 vm . retrySelected = function ( ) {
117115 toastService . showInfo ( "Retrying " + vm . selectedIds . length + " messages..." ) ;
118116 serviceControlService . retryFailedMessages ( vm . selectedIds )
Original file line number Diff line number Diff line change 8282 }
8383
8484 function getContentType ( headers ) {
85- return headers . find ( ( element ) => element . key === 'NServiceBus.ContentType' ) . value ;
85+ return headers . find ( function ( element ) { return element . key === 'NServiceBus.ContentType' ; } ) . value ;
8686 }
8787
8888 vm . retryMessage = function ( ) {
You can’t perform that action at this time.
0 commit comments