Browse Source

improve

pull/2058/head
Bernd Storath 1 week ago
parent
commit
ce20852592
  1. 1
      src/app/components/Form/InfoField.vue
  2. 2
      src/server/api/client/[clientId]/index.get.ts

1
src/app/components/Form/InfoField.vue

@ -15,7 +15,6 @@ defineProps<{
id: string; id: string;
label: string; label: string;
description?: string; description?: string;
disabled?: boolean;
data?: string; data?: string;
}>(); }>();
</script> </script>

2
src/server/api/client/[clientId]/index.get.ts

@ -23,7 +23,7 @@ export default definePermissionEventHandler(
if (!data) { if (!data) {
throw createError({ throw createError({
statusCode: 404, statusCode: 404,
statusMessage: 'Could not dump client data', statusMessage: 'Failed to dump client data',
}); });
} }

Loading…
Cancel
Save