Added new atributes to view in notice id
Also added SafeAreView to userid
This commit is contained in:
@@ -392,6 +392,16 @@ export default function NoticeDetails() {
|
||||
<Text className="font-bold text-gray-950">{notice.category}</Text>
|
||||
</Text>
|
||||
</Box>
|
||||
{notice.attributes && notice.attributes.length > 0 && (
|
||||
<Box className="mt-4 bg-gray-50 p-3 rounded-lg shadow-sm">
|
||||
{notice.attributes.map((attribute, index) => (
|
||||
<Text key={index} className="text-sm text-typography-500 mb-1">
|
||||
{attribute.name}:{" "}
|
||||
<Text className="font-bold text-gray-950">{attribute.value}</Text>
|
||||
</Text>
|
||||
))}
|
||||
</Box>
|
||||
)}
|
||||
<Box className="mt-4 bg-gray-50 p-3 rounded-lg shadow-sm">
|
||||
|
||||
<Text className="text-2xl text-gray-950">Opis ogloszenia</Text>
|
||||
|
||||
Reference in New Issue
Block a user