Commit bfed409d authored by Paul Slaughter's avatar Paul Slaughter

Merge branch 'refactor/showStagedIcon' into 'master'

Refactor showStagedIcon property's behavior to match its name

Closes #66071

See merge request gitlab-org/gitlab-ce!32333
parents dc864927 9575288f
......@@ -86,7 +86,7 @@ export default {
v-else-if="showChangedFileIcon"
:file="file"
:show-tooltip="true"
:show-staged-icon="true"
:show-staged-icon="false"
/>
<new-dropdown
:type="file.type"
......
......@@ -24,7 +24,7 @@ export default {
showStagedIcon: {
type: Boolean,
required: false,
default: false,
default: true,
},
size: {
type: Number,
......@@ -41,7 +41,7 @@ export default {
changedIcon() {
// False positive i18n lint: https://gitlab.com/gitlab-org/frontend/eslint-plugin-i18n/issues/26
// eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings
const suffix = !this.file.changed && this.file.staged && !this.showStagedIcon ? '-solid' : '';
const suffix = !this.file.changed && this.file.staged && this.showStagedIcon ? '-solid' : '';
return `${getCommitIconMap(this.file).icon}${suffix}`;
},
......
---
title: Refactor showStagedIcon property to reflect the behavior its name represents.
merge_request: 32333
author: Arun Kumar Mohan
type: other
......@@ -106,12 +106,10 @@ describe('Changed file icon', () => {
expect(findIcon().props('size')).toBe(size);
});
// NOTE: It looks like 'showStagedIcon' behavior is backwards to what the name suggests
// https://gitlab.com/gitlab-org/gitlab-ce/issues/66071
it.each`
showStagedIcon | iconName | desc
${false} | ${'file-modified-solid'} | ${'with showStagedIcon false, renders staged icon'}
${true} | ${'file-modified'} | ${'with showStagedIcon true, renders regular icon'}
${true} | ${'file-modified-solid'} | ${'with showStagedIcon true, renders staged icon'}
${false} | ${'file-modified'} | ${'with showStagedIcon false, renders regular icon'}
`('$desc', ({ showStagedIcon, iconName }) => {
factory({
file: stagedFile(),
......
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