Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.14.0
v24
7 changes: 7 additions & 0 deletions app/components/atoms/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ watch(
{ immediate: true },
)

watch(
() => props.permission,
async () => {
if (props.data?.length) await fetchPermissions()
},
)

const table = useVueTable({
...props.options,
data: computed(() => props.data),
Expand Down
2 changes: 1 addition & 1 deletion app/components/form/AcOverride.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps<{
}>()

const formSchema = toTypedSchema(z.object({
amount: z.number().min(0).max(100),
amount: z.number().min(0).max(1000),
reset: z.boolean().optional(),
}))

Expand Down
2 changes: 1 addition & 1 deletion app/components/form/AcUpdateBase.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps<{
}>()

const formSchema = toTypedSchema(z.object({
amount: z.number().min(0).max(100),
amount: z.number().min(0).max(1000),
}))

const form = useForm({
Expand Down
2 changes: 1 addition & 1 deletion app/components/form/HealthUpdateBase.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps<{
}>()

const formSchema = toTypedSchema(z.object({
amount: z.number().min(0).max(100),
amount: z.number().min(0).max(1000),
}))

const form = useForm({
Expand Down
17 changes: 17 additions & 0 deletions constants/changelogs/v2-1-2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "v2.1.2",
"date": "2025-12-19",
"features": [
{
"title": "Bug fixes",
"items": [
{
"text": "AC and HP base override is capped at 100 instead of 1000"
},
{
"text": "Edit permissions were sometimes not properly set for shared items"
}
]
}
]
}
1 change: 0 additions & 1 deletion emails/Layout/Default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ withDefaults(
},
separator: '',
safelist: '',
experimental: '',
corePlugins: '',

}"
Expand Down
Loading