Skip to content
Snippets Groups Projects
Unverified Commit 16af12e0 authored by John Molakvoæ's avatar John Molakvoæ
Browse files

Fixed webpack config, groups flex thanks to @juliushaertl and groups tooltip

parent 38b1020f
No related branches found
No related tags found
No related merge requests found
......@@ -673,7 +673,7 @@ input {
}
/* selected tag */
.multiselect__tag {
flex: 1 0 calc(50% - 5px);;
flex: 1 0 0;
line-height: 20px;
padding: 1px 5px;
background-image: none;
......@@ -685,6 +685,9 @@ input {
/* require to override the default width
and force the tag to shring properly */
min-width: 0;
max-width: 50%;
max-width: fit-content;
max-width: -moz-fit-content;
/* css hack, detect if more than two tags
if so, flex-basis is set to half */
&:only-child {
......
This diff is collapsed.
This diff is collapsed.
......@@ -229,7 +229,8 @@ export default {
* @returns {string}
*/
formatGroupsTitle(groups) {
return groups.map(group => group.name).join(', ');
let names = groups.map(group => group.name);
return names.slice(2,).join(', ');
},
deleteUser() {
......
......@@ -3,9 +3,9 @@ const path = require('path')
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
path: path.resolve(__dirname, './js'),
publicPath: '/dist/',
filename: 'build.js'
filename: 'main.js'
},
module: {
rules: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment