From 50d4fabd615f3e8806aa8db0fd80822312bd16a3 Mon Sep 17 00:00:00 2001 From: Amr Saafan Date: Tue, 31 Jul 2018 18:27:48 +0200 Subject: [PATCH] Add missing comma #1483 --- .../Views/Shared/EditorTemplates/ButtonType.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Presentation/SmartStore.Web/Views/Shared/EditorTemplates/ButtonType.cshtml b/src/Presentation/SmartStore.Web/Views/Shared/EditorTemplates/ButtonType.cshtml index 63ec6e1640..5e2b2b37d2 100644 --- a/src/Presentation/SmartStore.Web/Views/Shared/EditorTemplates/ButtonType.cshtml +++ b/src/Presentation/SmartStore.Web/Views/Shared/EditorTemplates/ButtonType.cshtml @@ -24,7 +24,7 @@ new SelectListItem { Text = T("Common.Buttons.Success").ToString(), Value = "btn-success", Selected = (Value == "btn-success") }, new SelectListItem { Text = T("Common.Buttons.Warning").ToString(), Value = "btn-warning", Selected = (Value == "btn-warning") }, new SelectListItem { Text = T("Common.Buttons.Danger").ToString(), Value = "btn-danger", Selected = (Value == "btn-danger") }, - new SelectListItem { Text = T("Common.Buttons.Link").ToString(), Value = "btn-link", Selected = (Value == "btn-link") } + new SelectListItem { Text = T("Common.Buttons.Link").ToString(), Value = "btn-link", Selected = (Value == "btn-link") }, new SelectListItem { Text = T("Common.Buttons.Light").ToString(), Value = "btn-light", Selected = (Value == "btn-light") }, new SelectListItem { Text = T("Common.Buttons.Dark").ToString(), Value = "btn-dark", Selected = (Value == "btn-dark") }, }; @@ -37,4 +37,4 @@ var name = ViewData.TemplateInfo.GetFullHtmlFieldName(string.Empty); } -@Html.DropDownList(string.Empty, ButtonTypes, new { @value = Value, @class = "form-control" }) \ No newline at end of file +@Html.DropDownList(string.Empty, ButtonTypes, new { @value = Value, @class = "form-control" })