Skip to content

Commit

Permalink
Fixed webpack config and groups tooltip
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ (skjnldsv) <[email protected]>
  • Loading branch information
skjnldsv committed May 18, 2018
1 parent 38b1020 commit 3f9f174
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
13 changes: 9 additions & 4 deletions settings/js/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion settings/js/main.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion settings/src/components/userList/userRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
4 changes: 2 additions & 2 deletions settings/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit 3f9f174

Please sign in to comment.