This repository was archived by the owner on May 16, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,9 @@ module.exports = Backbone.View.extend({
406406 this . $ ( "#advancedForm input[name=additionalPaymentData][value=" + localStorage . getItem ( 'AdditionalPaymentData' ) + "]" ) . prop ( 'checked' , true ) ;
407407 this . $ ( "#advancedForm input[name=smtp_notifications][value=" + smtp_notifications + "]" ) . prop ( 'checked' , true ) ;
408408
409- currencyList = __ . uniq ( currencyList , function ( item ) { return item . code ; } ) ;
409+ currencyList = __ . uniq ( currencyList , function ( item ) {
410+ return item . code ;
411+ } ) ;
410412 currencyList = currencyList . sort ( function ( a , b ) {
411413 var cA = a . currency . toLowerCase ( ) ,
412414 cB = b . currency . toLowerCase ( ) ;
Original file line number Diff line number Diff line change @@ -909,7 +909,7 @@ module.exports = baseVw.extend({
909909
910910 this . listenTo ( this . followerList , 'usersAdded' , ( ) => {
911911 var searchTerms = this . $ ( '#inputFollowing' ) . val ( ) ;
912- if ( this . followingSearch ) {
912+ if ( this . followingSearch ) {
913913 this . followingSearch . reIndex ( ) ;
914914 searchTerms && this . followingSearch . search ( searchTerms ) ;
915915 }
You can’t perform that action at this time.
0 commit comments