Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32167696
D3896.1765053495.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D3896.1765053495.diff
View Options
diff --git a/web/chat/composed-message.react.js b/web/chat/composed-message.react.js
--- a/web/chat/composed-message.react.js
+++ b/web/chat/composed-message.react.js
@@ -159,12 +159,12 @@
let inlineSidebar = null;
if (item.threadCreatedFromMessage) {
- const positioning = isViewer ? 'right' : 'left';
+ const position = isViewer ? 'right' : 'left';
inlineSidebar = (
<div className={css.sidebarMarginBottom}>
<InlineSidebar
threadInfo={item.threadCreatedFromMessage}
- positioning={positioning}
+ position={position}
/>
</div>
);
diff --git a/web/chat/inline-sidebar.react.js b/web/chat/inline-sidebar.react.js
--- a/web/chat/inline-sidebar.react.js
+++ b/web/chat/inline-sidebar.react.js
@@ -11,7 +11,7 @@
type Props = {
+threadInfo: ThreadInfo,
- +positioning: 'left' | 'center' | 'right',
+ +position: 'left' | 'center' | 'right',
};
function InlineSidebar(props: Props): React.Node {
const { threadInfo } = props;
diff --git a/web/chat/robotext-message.react.js b/web/chat/robotext-message.react.js
--- a/web/chat/robotext-message.react.js
+++ b/web/chat/robotext-message.react.js
@@ -51,7 +51,7 @@
<div className={css.sidebarMarginTop}>
<InlineSidebar
threadInfo={this.props.item.threadCreatedFromMessage}
- positioning="center"
+ position="center"
/>
</div>
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 6, 8:38 PM (3 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5840694
Default Alt Text
D3896.1765053495.diff (1 KB)
Attached To
Mode
D3896: [refactor] [web] [ENG-530] rename prop from positioning to position
Attached
Detach File
Event Timeline
Log In to Comment