Commit 4f2f35f3 authored by Gilang Gumilar's avatar Gilang Gumilar Committed by Fatih Acet

Fix evidence SHA clipboard hover text

parent 7974883f
......@@ -67,7 +67,7 @@ export default {
</template>
</expand-button>
<clipboard-button
:title="__('Copy commit SHA')"
:title="__('Copy evidence SHA')"
:text="sha"
css-class="btn-default btn-transparent btn-clipboard"
/>
......
---
title: Fix evidence SHA clipboard hover text.
merge_request: 26608
author: Gilang Gumilar
type: fixed
......@@ -5510,6 +5510,9 @@ msgstr ""
msgid "Copy commit SHA"
msgstr ""
msgid "Copy evidence SHA"
msgstr ""
msgid "Copy file contents"
msgstr ""
......
......@@ -67,7 +67,7 @@ describe('Evidence Block', () => {
});
it('renders the correct hover text', () => {
expect(wrapper.find(ClipboardButton).attributes('title')).toBe('Copy commit SHA');
expect(wrapper.find(ClipboardButton).attributes('title')).toBe('Copy evidence SHA');
});
it('copies the sha', () => {
......
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