Commit e14b4b05 authored by Tim Zallmann's avatar Tim Zallmann

Merge branch '57540-filename-trailing-space' into 'master'

Implemented trimming for item's name in Web IDE

Closes #57540

See merge request gitlab-org/gitlab-ce!26270
parents 5765c598 1a2bdb43
......@@ -29,7 +29,7 @@ export default {
return this.name || (entryPath ? `${entryPath}/` : '');
},
set(val) {
this.name = val;
this.name = val.trim();
},
},
modalTitle() {
......
---
title: Implemented whitespace-trimming for file names in Web IDE
merge_request: 26270
author:
type: fixed
......@@ -109,6 +109,18 @@ describe('new file modal component', () => {
expect(vm.entryName).toBe('index.js');
});
it('removes leading/trailing spaces when found in the new name', () => {
vm.entryName = ' index.js ';
expect(vm.entryName).toBe('index.js');
});
it('does not remove internal spaces in the file name', () => {
vm.entryName = ' In Praise of Idleness.txt ';
expect(vm.entryName).toBe('In Praise of Idleness.txt');
});
});
});
......
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