Skip to content

Commit

Permalink
Merge pull request #596 from YunoHost/bookworm-fixes
Browse files Browse the repository at this point in the history
Bookworm fixes
  • Loading branch information
alexAubin authored Nov 10, 2024
2 parents ba4623e + 0697fba commit e8d3220
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.1.0",
"bootstrap": "^5.3.3",
"bootstrap-vue-next": "^0.24.16",
"bootstrap-vue-next": "^0.25.13",
"date-fns": "^4.0.0",
"fork-awesome": "^1.2.0",
"simple-evaluate": "^1.4.6",
Expand Down
2 changes: 1 addition & 1 deletion app/src/views/app/AppInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const fields = {
rules: useArrayRule(() => form.value.labels, { label: { required } }),
}),
url: {
rules: { path: { required } },
rules: { domain: { required } },
},
}
const { v } = useForm(form, fields)
Expand Down
2 changes: 1 addition & 1 deletion app/src/views/group/GroupCreate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const onAddGroup = onSubmit((onError) => {
.post({
uri: 'users/groups',
cachePath: 'groups',
data: form,
data: form.value,
humanKey: { key: 'groups.create', name: form.value.groupname },
})
.then(() => {
Expand Down
8 changes: 4 additions & 4 deletions app/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -704,10 +704,10 @@ boolbase@^1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==

bootstrap-vue-next@^0.24.16:
version "0.24.16"
resolved "https://registry.yarnpkg.com/bootstrap-vue-next/-/bootstrap-vue-next-0.24.16.tgz#ebf7cc7675aec08558d05e3430621292b163880b"
integrity sha512-Imkb/nUlIAG8Hi0tn6uW2L5R6/yQ6pNHIfUlkKSJSO1BrFaGnPSMaCL1KXuQ10nxprfk3zATlUjzdtoekVZqAw==
bootstrap-vue-next@^0.25.13:
version "0.25.13"
resolved "https://registry.yarnpkg.com/bootstrap-vue-next/-/bootstrap-vue-next-0.25.13.tgz#f496a766aa8746881c55f86f88e8ab6e48bc2c11"
integrity sha512-3cl0RS3wNSevrbwxOcwAHHP23/6+4Lcx5xsgUtvVDpPu1zQAN3dH+DF1+/qOcmOP2TK0QAjgcnj6JoG04aIXfQ==

bootstrap@^5.3.3:
version "5.3.3"
Expand Down

0 comments on commit e8d3220

Please sign in to comment.