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",
|
"interface": "group-detail",
|
||||||
"note": null,
|
"note": null,
|
||||||
"options": {
|
"options": {
|
||||||
|
"headerIcon": "credit_card",
|
||||||
"start": "closed"
|
"start": "closed"
|
||||||
},
|
},
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
|
|||||||
@ -13,11 +13,12 @@
|
|||||||
"interface": "group-detail",
|
"interface": "group-detail",
|
||||||
"note": null,
|
"note": null,
|
||||||
"options": {
|
"options": {
|
||||||
"headerIcon": "lab_profile"
|
"headerIcon": "lab_profile",
|
||||||
|
"start": "closed"
|
||||||
},
|
},
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"required": false,
|
"required": false,
|
||||||
"sort": 9,
|
"sort": 10,
|
||||||
"special": [
|
"special": [
|
||||||
"alias",
|
"alias",
|
||||||
"no-data",
|
"no-data",
|
||||||
|
|||||||
@ -13,11 +13,12 @@
|
|||||||
"interface": "group-detail",
|
"interface": "group-detail",
|
||||||
"note": null,
|
"note": null,
|
||||||
"options": {
|
"options": {
|
||||||
"headerIcon": "edit_square"
|
"headerIcon": "edit_square",
|
||||||
|
"start": "closed"
|
||||||
},
|
},
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"required": false,
|
"required": false,
|
||||||
"sort": 8,
|
"sort": 9,
|
||||||
"special": [
|
"special": [
|
||||||
"alias",
|
"alias",
|
||||||
"no-data",
|
"no-data",
|
||||||
|
|||||||
@ -13,11 +13,12 @@
|
|||||||
"interface": "group-detail",
|
"interface": "group-detail",
|
||||||
"note": null,
|
"note": null,
|
||||||
"options": {
|
"options": {
|
||||||
"headerIcon": "wysiwyg"
|
"headerIcon": "wysiwyg",
|
||||||
|
"start": "closed"
|
||||||
},
|
},
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"required": false,
|
"required": false,
|
||||||
"sort": 7,
|
"sort": 8,
|
||||||
"special": [
|
"special": [
|
||||||
"alias",
|
"alias",
|
||||||
"no-data",
|
"no-data",
|
||||||
|
|||||||
@ -48,7 +48,7 @@ export function ItemTitle({
|
|||||||
<MapPinIcon className='tw:w-4 tw:mr-1 tw:flex-shrink-0' />
|
<MapPinIcon className='tw:w-4 tw:mr-1 tw:flex-shrink-0' />
|
||||||
<span title={address} className='tw:truncate'>
|
<span title={address} className='tw:truncate'>
|
||||||
{address}
|
{address}
|
||||||
{distance && distance >= 0.1 && ` (${formatDistance(distance) ?? ''})`}
|
{distance && distance >= 0.1 ? ` (${formatDistance(distance) ?? ''})` : ''}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import type { Item } from '#types/Item'
|
|||||||
*/
|
*/
|
||||||
export const StartEndView = ({ item }: { item?: Item }) => {
|
export const StartEndView = ({ item }: { item?: Item }) => {
|
||||||
return (
|
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'>
|
<div className='tw:basis-2/5 tw:flex tw:flex-row'>
|
||||||
<CalendarIcon className='tw:h-4 tw:w-4 tw:mr-2' />
|
<CalendarIcon className='tw:h-4 tw:w-4 tw:mr-2' />
|
||||||
<time
|
<time
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user