File tree 1 file changed +1
-1
lines changed
plugins/crashes/frontend/public/javascripts
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 289
289
resolved : state . rawData . crashes . resolved ,
290
290
resolvedPercent : parseFloat ( ( ( ( state . rawData . crashes . total === 0 ) ? 0 : ( state . rawData . crashes . resolved / state . rawData . crashes . total ) ) * 100 ) . toFixed ( 2 ) ) ,
291
291
unresolved : ( state . rawData . crashes . total - state . rawData . crashes . resolved ) ,
292
- unresolvedPercent : parseFloat ( ( ( ( ( state . rawData . crashes . total === 0 ) ? 0 : ( state . rawData . crashes . total - state . rawData . crashes . resolved ) / state . rawData . crashes . total ) ) * 100 ) . toFixed ( 2 ) ) ,
292
+ unresolvedPercent : parseFloat ( ( ( ( state . rawData . crashes . total === 0 ) ? 0 : ( state . rawData . crashes . total - state . rawData . crashes . resolved ) / state . rawData . crashes . total ) * 100 ) . toFixed ( 2 ) ) ,
293
293
reoccured : state . rawData . crashes . renewed
294
294
} ;
295
295
You can’t perform that action at this time.
0 commit comments