Fixes the markdown toolbar buttons

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55618
This commit is contained in:
Phil Hughes 2018-12-21 10:37:53 +00:00
parent c20f056401
commit 3019a567f0
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
3 changed files with 12 additions and 3 deletions

View File

@ -82,7 +82,7 @@ export function insertMarkdownText({
tag,
cursorOffset,
blockTag,
selected,
selected = '',
wrap,
select,
}) {
@ -212,7 +212,7 @@ export function addMarkdownListeners(form) {
blockTag: $this.data('mdBlock'),
wrap: !$this.data('mdPrepend'),
select: $this.data('mdSelect'),
tagContent: $this.data('mdTagContent').toString(),
tagContent: $this.data('mdTagContent'),
});
});
}

View File

@ -0,0 +1,5 @@
---
title: Fixed markdown toolbar buttons
merge_request:
author:
type: fixed

View File

@ -14,7 +14,7 @@ describe "User creates issue" do
visit(new_project_issue_path(project))
end
it "creates issue" do
it "creates issue", :js do
page.within(".issue-form") do
expect(page).to have_no_content("Assign to")
.and have_no_content("Labels")
@ -27,11 +27,15 @@ describe "User creates issue" do
issue_title = "500 error on profile"
fill_in("Title", with: issue_title)
first('.js-md').click
first('.qa-issuable-form-description').native.send_keys('Description')
click_button("Submit issue")
expect(page).to have_content(issue_title)
.and have_content(user.name)
.and have_content(project.name)
expect(page).to have_selector('strong', text: 'Description')
end
end