mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Translation for default (light) color scheme was missing
This commit is contained in:
@@ -97,7 +97,7 @@ class Admin::ThemesController < Admin::AdminController
|
|||||||
def index
|
def index
|
||||||
@theme = Theme.order(:name).includes(:theme_fields, :remote_theme)
|
@theme = Theme.order(:name).includes(:theme_fields, :remote_theme)
|
||||||
@color_schemes = ColorScheme.all.to_a
|
@color_schemes = ColorScheme.all.to_a
|
||||||
light = ColorScheme.new(name: I18n.t("color_schemes.default"))
|
light = ColorScheme.new(name: I18n.t("color_schemes.light"))
|
||||||
@color_schemes.unshift(light)
|
@color_schemes.unshift(light)
|
||||||
|
|
||||||
payload = {
|
payload = {
|
||||||
|
|||||||
Reference in New Issue
Block a user