Skip to content

Commit

Permalink
fix dB list formatting
Browse files Browse the repository at this point in the history
Some of the items did not match the others
  • Loading branch information
josephdadams committed Dec 2, 2021
1 parent ab10ca0 commit 524add3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,12 +329,12 @@ instance.prototype.destroy = function() {

instance.prototype.fader_val = [
{ label: '- ∞', id: '0.0' },
{ label: '-60 dB: ', id: '0.001' },
{ label: '-55 dB: ', id: '0.00178' },
{ label: '-50 dB: ', id: '0.00315' },
{ label: '-45 dB: ', id: '0.00562' },
{ label: '-40 dB: ', id: '0.01' },
{ label: '-35 dB: ', id: '0.0178' },
{ label: '-60 dB', id: '0.001' },
{ label: '-55 dB', id: '0.00178' },
{ label: '-50 dB', id: '0.00315' },
{ label: '-45 dB', id: '0.00562' },
{ label: '-40 dB', id: '0.01' },
{ label: '-35 dB', id: '0.0178' },
{ label: '-30 dB', id: '0.0315' },
{ label: '-25 dB', id: '0.0562' },
{ label: '-20 dB', id: '0.1' },
Expand Down

0 comments on commit 524add3

Please sign in to comment.