mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-03-01 12:44:17 +00:00
updated backend
This commit is contained in:
parent
0c5375c73e
commit
eb87b9344a
@ -13,6 +13,7 @@
|
||||
"interface": "group-detail",
|
||||
"note": null,
|
||||
"options": {
|
||||
"headerIcon": "credit_card",
|
||||
"start": "closed"
|
||||
},
|
||||
"readonly": false,
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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>
|
||||
)}
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user