mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-22 01:18:19 +01:00
Also: - New schema version 8 with video/image thumbnails, screenshots, sizes - Upgrade messages not at current schema version when loading messages to show in conversation - New MessageDetail react component - New ConversationHeader react component
27 lines
414 B
Markdown
27 lines
414 B
Markdown
#### Number, name and profile
|
|
|
|
```jsx
|
|
<ContactName
|
|
i18n={util.i18n}
|
|
name="Someone 🔥 Somewhere"
|
|
phoneNumber="(202) 555-0011"
|
|
profileName="🔥Flames🔥"
|
|
/>
|
|
```
|
|
|
|
#### Number and profile, no name
|
|
|
|
```jsx
|
|
<ContactName
|
|
i18n={util.i18n}
|
|
phoneNumber="(202) 555-0011"
|
|
profileName="🔥Flames🔥"
|
|
/>
|
|
```
|
|
|
|
#### No name, no profile
|
|
|
|
```jsx
|
|
<ContactName i18n={util.i18n} phoneNumber="(202) 555-0011" />
|
|
```
|