Skip to content

Commit 50d4fab

Browse files
authored
Add missing comma
smartstore#1483
1 parent 7fddad8 commit 50d4fab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Presentation/SmartStore.Web/Views/Shared/EditorTemplates/ButtonType.cshtml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
new SelectListItem { Text = T("Common.Buttons.Success").ToString(), Value = "btn-success", Selected = (Value == "btn-success") },
2525
new SelectListItem { Text = T("Common.Buttons.Warning").ToString(), Value = "btn-warning", Selected = (Value == "btn-warning") },
2626
new SelectListItem { Text = T("Common.Buttons.Danger").ToString(), Value = "btn-danger", Selected = (Value == "btn-danger") },
27-
new SelectListItem { Text = T("Common.Buttons.Link").ToString(), Value = "btn-link", Selected = (Value == "btn-link") }
27+
new SelectListItem { Text = T("Common.Buttons.Link").ToString(), Value = "btn-link", Selected = (Value == "btn-link") },
2828
new SelectListItem { Text = T("Common.Buttons.Light").ToString(), Value = "btn-light", Selected = (Value == "btn-light") },
2929
new SelectListItem { Text = T("Common.Buttons.Dark").ToString(), Value = "btn-dark", Selected = (Value == "btn-dark") },
3030
};
@@ -37,4 +37,4 @@
3737
var name = ViewData.TemplateInfo.GetFullHtmlFieldName(string.Empty);
3838
}
3939

40-
@Html.DropDownList(string.Empty, ButtonTypes, new { @value = Value, @class = "form-control" })
40+
@Html.DropDownList(string.Empty, ButtonTypes, new { @value = Value, @class = "form-control" })

0 commit comments

Comments
 (0)