Revize bb690a9a
Přidáno uživatelem Fantič před téměř 2 roky(ů)
src/components/item/ItemView.tsx | ||
---|---|---|
55 | 55 |
{item.fullView && item.imageUrl && ( |
56 | 56 |
<Center background="primary.100" marginTop="5%"> |
57 | 57 |
<Text>Resembling object</Text> |
58 |
<Image size={250} alt="image" source={{ uri: IMAGE_URL + "/" + item.imageUrl }} />
|
|
58 |
<Image size={250} alt="image" source={{ uri: IMAGE_URL + "/" + item.imageUrl }}/> |
|
59 | 59 |
</Center>)} |
60 | 60 |
{item.fullView && ( |
61 | 61 |
<Card shadow="1" marginTop="5%" marginBottom="5%"> |
... | ... | |
138 | 138 |
notesLoading ? |
139 | 139 |
<LoadingBox text="Notes loading" /> |
140 | 140 |
: |
141 |
<NotesListView notes={props.notes} handleDelete={() => console.log("TODO handle delete")} handleEdit={() => console.log("TODO handle edit")} handleReply={() => console.log("TODO handle reply")}/> |
|
141 |
<NotesListView notes={props.notes} handleDelete={() => console.log("TODO handle delete")} handleEdit={() => console.log("TODO handle edit")} handleReply={() => console.log("TODO handle reply")} setConfirmDialog={() => {}}/>
|
|
142 | 142 |
)} |
143 | 143 |
|
144 | 144 |
{/* item notes switch tab */} |
Také k dispozici: Unified diff
re #10569: NotesView: Get Notes