lint: make colorScheme camel case

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/21833/head
Aaron Raimist 2018-10-22 23:07:41 -05:00
parent 9976c4eba5
commit 4b3c865959
No known key found for this signature in database
GPG Key ID: 37419210002890EF
1 changed files with 2 additions and 2 deletions

View File

@ -1406,8 +1406,8 @@ export default React.createClass({
// Fire the tinter right on startup to ensure the default theme is applied // Fire the tinter right on startup to ensure the default theme is applied
// A later sync can/will correct the tint to be the right value for the user // A later sync can/will correct the tint to be the right value for the user
const color_scheme = SettingsStore.getValue("roomColor"); const colorScheme = SettingsStore.getValue("roomColor");
Tinter.tint(color_scheme.primary_color, color_scheme.secondary_color); Tinter.tint(colorScheme.primary_color, colorScheme.secondary_color);
}, },
/** /**