Commit 81265090 authored by Denys Mishunov's avatar Denys Mishunov

Merge branch '241531-user-unable-to-delete-project' into 'master'

Fix delete confirm message not displaying spaces

Closes #241531

See merge request gitlab-org/gitlab!40549
parents aeddf2d0 3439e16d
......@@ -86,7 +86,7 @@ export default {
<slot name="modal-body"></slot>
<p class="gl-mb-1">{{ $options.strings.confirmText }}</p>
<p>
<code>{{ confirmPhrase }}</code>
<code class="ws-pre-wrap">{{ confirmPhrase }}</code>
</p>
<gl-form-input
id="confirm_name_input"
......
---
title: Fix delete confirm message not displaying trailing spaces
merge_request: 40549
author:
type: fixed
......@@ -51,7 +51,9 @@ exports[`Project remove modal initialized matches the snapshot 1`] = `
</p>
<p>
<code>
<code
class="ws-pre-wrap"
>
foo
</code>
</p>
......
......@@ -66,7 +66,9 @@ exports[`Project remove modal initialized matches the snapshot 1`] = `
</p>
<p>
<code>
<code
class="ws-pre-wrap"
>
foo
</code>
</p>
......
......@@ -55,7 +55,9 @@ exports[`Project remove modal intialized matches the snapshot 1`] = `
</p>
<p>
<code>
<code
class="ws-pre-wrap"
>
foo
</code>
</p>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment