updated backend

This commit is contained in:
Anton Tranelis 2025-10-10 10:35:00 +02:00
parent 0c5375c73e
commit eb87b9344a
6 changed files with 12 additions and 8 deletions

View File

@ -13,6 +13,7 @@
"interface": "group-detail",
"note": null,
"options": {
"headerIcon": "credit_card",
"start": "closed"
},
"readonly": false,

View File

@ -13,11 +13,12 @@
"interface": "group-detail",
"note": null,
"options": {
"headerIcon": "lab_profile"
"headerIcon": "lab_profile",
"start": "closed"
},
"readonly": false,
"required": false,
"sort": 9,
"sort": 10,
"special": [
"alias",
"no-data",

View File

@ -13,11 +13,12 @@
"interface": "group-detail",
"note": null,
"options": {
"headerIcon": "edit_square"
"headerIcon": "edit_square",
"start": "closed"
},
"readonly": false,
"required": false,
"sort": 8,
"sort": 9,
"special": [
"alias",
"no-data",

View File

@ -13,11 +13,12 @@
"interface": "group-detail",
"note": null,
"options": {
"headerIcon": "wysiwyg"
"headerIcon": "wysiwyg",
"start": "closed"
},
"readonly": false,
"required": false,
"sort": 7,
"sort": 8,
"special": [
"alias",
"no-data",

View File

@ -48,7 +48,7 @@ export function ItemTitle({
<MapPinIcon className='tw:w-4 tw:mr-1 tw:flex-shrink-0' />
<span title={address} className='tw:truncate'>
{address}
{distance && distance >= 0.1 && ` (${formatDistance(distance) ?? ''})`}
{distance && distance >= 0.1 ? ` (${formatDistance(distance) ?? ''})` : ''}
</span>
</div>
)}

View File

@ -8,7 +8,7 @@ import type { Item } from '#types/Item'
*/
export const StartEndView = ({ item }: { item?: Item }) => {
return (
<div className='tw:flex tw:flex-row tw:mb-4 tw:mt-1'>
<div className='tw:flex tw:flex-row tw:mb-4 tw:mt-4'>
<div className='tw:basis-2/5 tw:flex tw:flex-row'>
<CalendarIcon className='tw:h-4 tw:w-4 tw:mr-2' />
<time