summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce Johnson <bryce@gitlab.com>2017-07-07 14:32:11 -0400
committerBryce Johnson <bryce@gitlab.com>2017-07-07 14:32:11 -0400
commit0b6d66d8c1bf10e44aa2231e1e50994a056e2732 (patch)
treed34f9312789014a1d2d345c8dcce95515ca9a1c3
parent90e11fbee43bf4eea93d8622e4630e4fcb6bdc6b (diff)
downloadgitlab-ce-34316-edit-issues-sidebar-needs-some-ui-polish.tar.gz
Remove unneccessary transformation of type to string.34316-edit-issues-sidebar-needs-some-ui-polish
-rw-r--r--app/views/shared/issuable/_bulk_update_sidebar.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/_bulk_update_sidebar.html.haml b/app/views/shared/issuable/_bulk_update_sidebar.html.haml
index 53742ebacfe..b897fcebc0a 100644
--- a/app/views/shared/issuable/_bulk_update_sidebar.html.haml
+++ b/app/views/shared/issuable/_bulk_update_sidebar.html.haml
@@ -1,6 +1,6 @@
- type = local_assigns.fetch(:type)
-%aside.issues-bulk-update.js-right-sidebar.right-sidebar{ data: { type: type.to_s }, "aria-live" => "polite" }
+%aside.issues-bulk-update.js-right-sidebar.right-sidebar{ data: { type: type }, "aria-live" => "polite" }
.issuable-sidebar.hidden
= form_tag [:bulk_update, @project.namespace.becomes(Namespace), @project, type], method: :post, class: "bulk-update" do
.block