diff options
author | Vitaly Takmazov | 2022-10-28 15:17:47 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | d1ae7c0766c1e3319b4a75164123ffd364fd2389 (patch) | |
tree | 344e0926c40b7fb1e9b48d13eb2c4a8c2c349867 /vnext/src/ui | |
parent | 204f3762eedd8028f7d79826dc625eb31bbcb909 (diff) |
Merge `embed.js` from Next version
Diffstat (limited to 'vnext/src/ui')
-rw-r--r-- | vnext/src/ui/Avatar.js | 1 | ||||
-rw-r--r-- | vnext/src/ui/Thread.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/ui/Avatar.js b/vnext/src/ui/Avatar.js index 0ec679df..04ec5910 100644 --- a/vnext/src/ui/Avatar.js +++ b/vnext/src/ui/Avatar.js @@ -15,6 +15,7 @@ import './Avatar.css'; /** * Avatar component + * * @param {AvatarProps} props */ function Avatar({ user, style, link, children }) { diff --git a/vnext/src/ui/Thread.js b/vnext/src/ui/Thread.js index 20ea0a3c..0f0f88e3 100644 --- a/vnext/src/ui/Thread.js +++ b/vnext/src/ui/Thread.js @@ -8,7 +8,7 @@ import Spinner from './Spinner'; import { getMessages, comment, update } from '../api'; /** - * @type import('../api').Message + * @type { import('../api').Message } */ const emptyMessage = {}; |