Commit dffddcbc authored by Valery Sizov's avatar Valery Sizov

[CE>EE] Resolve frontend conflicts

parent c08a3bb1
...@@ -56,14 +56,6 @@ export const slugify = str => str.trim().toLowerCase(); ...@@ -56,14 +56,6 @@ export const slugify = str => str.trim().toLowerCase();
export const truncate = (string, maxLength) => `${string.substr(0, (maxLength - 3))}...`; export const truncate = (string, maxLength) => `${string.substr(0, (maxLength - 3))}...`;
/** /**
<<<<<<< HEAD
* Capitalizes first character.
*
* @param {String} text
* @returns {String}
*/
export const capitalizeFirstCharacter = text => `${text[0].toUpperCase()}${text.slice(1)}`;
=======
* Capitalizes first character * Capitalizes first character
* *
* @param {String} text * @param {String} text
...@@ -72,4 +64,3 @@ export const capitalizeFirstCharacter = text => `${text[0].toUpperCase()}${text. ...@@ -72,4 +64,3 @@ export const capitalizeFirstCharacter = text => `${text[0].toUpperCase()}${text.
export function capitalizeFirstCharacter(text) { export function capitalizeFirstCharacter(text) {
return `${text[0].toUpperCase()}${text.slice(1)}`; return `${text[0].toUpperCase()}${text.slice(1)}`;
} }
>>>>>>> c26d7089d058dc22116f383815da8cec80a99ac5
...@@ -910,7 +910,6 @@ ...@@ -910,7 +910,6 @@
} }
} }
<<<<<<< HEAD
.add-issuable-form-input-wrapper { .add-issuable-form-input-wrapper {
height: auto; height: auto;
padding: $gl-vert-padding $gl-vert-padding 0 $gl-input-padding; padding: $gl-vert-padding $gl-vert-padding 0 $gl-input-padding;
...@@ -956,8 +955,6 @@ ...@@ -956,8 +955,6 @@
margin-top: $gl-padding; margin-top: $gl-padding;
} }
=======
>>>>>>> c26d7089d058dc22116f383815da8cec80a99ac5
.right-sidebar-collapsed { .right-sidebar-collapsed {
.sidebar-grouped-item { .sidebar-grouped-item {
.sidebar-collapsed-icon { .sidebar-collapsed-icon {
......
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