Skip to content

Commit

Permalink
feat+refactor: custom permissions + add/edit group component refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fantinodavide committed Oct 17, 2024
1 parent 08be9bc commit e19f355
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "squad-whitelister",
"version": "1.4.19",
"version": "1.5.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions release/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
});
}
</script>
<script type="module" crossorigin src="/assets/index.53550dd1.js"></script>
<link rel="stylesheet" href="/assets/index.bed02ac3.css">
<script type="module" crossorigin src="/assets/index.f0898e40.js"></script>
<link rel="stylesheet" href="/assets/index.395ddef8.css">
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion release/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "squad-whitelister",
"version": "1.4.19",
"version": "1.5.0",
"dependencies": {
"axios": "^0.26.1",
"body-parser": "^1.20.0",
Expand Down
2 changes: 1 addition & 1 deletion release/server.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export default {
" />
<registration v-if="popups.registration" @cancelBtnClick="popups.registration = false" />
<changepassword v-if="popups.changepassword" @cancelBtnClick="popups.changepassword = false" />
<editGameGroup v-if="popups.editGameGroup || popups.addingNewGameGroup" @cancelBtnClick="popups.editGameGroup = false; popups.addingNewGameGroup = false; inEditingGroup = null" :group_data="game_groups[ inEditingGroup ]" @new_game_group="appendNewGroup" @edited="game_groups[ inEditingGroup ] = $event" />
<editGameGroup v-if="popups.editGameGroup || popups.addingNewGameGroup" @cancelBtnClick="popups.editGameGroup = false; popups.addingNewGameGroup = false; inEditingGroup = -1" :group_data="game_groups[ inEditingGroup ]" @new_game_group="appendNewGroup" @edited="game_groups[ inEditingGroup ] = $event" />
<confirmPopup
:ref="(el: any) => {
pointers.confirmPopup = el;
Expand Down

0 comments on commit e19f355

Please sign in to comment.