From 2d2fc5002e4a8e9396955f4140a1fe07081a32e1 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 29 Jan 2026 20:11:27 -0300 Subject: [PATCH 01/12] fix: collapsible attachment with text duplicating the content --- .../message/Components/Attachments/Quote.tsx | 2 ++ app/containers/message/Message.stories.tsx | 28 +++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/app/containers/message/Components/Attachments/Quote.tsx b/app/containers/message/Components/Attachments/Quote.tsx index 7510000367e..0ebbd59f9d7 100644 --- a/app/containers/message/Components/Attachments/Quote.tsx +++ b/app/containers/message/Components/Attachments/Quote.tsx @@ -11,6 +11,8 @@ import { getMessageFromAttachment } from '../../utils'; const isQuoteAttachment = (file?: IAttachment): boolean => { if (!file) return false; + if (file.collapsed) return false; + if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url || file.collapsed)) { return false; } diff --git a/app/containers/message/Message.stories.tsx b/app/containers/message/Message.stories.tsx index 1f15cea13c4..fd7ccfe6b1f 100644 --- a/app/containers/message/Message.stories.tsx +++ b/app/containers/message/Message.stories.tsx @@ -2191,6 +2191,20 @@ const collapsedAttachments = { } ] }; + +const collapsibleAttachmentWithText = { + collapsed: true, + title: 'Collapsed attachment block', + text: 'This attachment text should NOT appear as plain text above the message or duplicate before the block.', + description: 'Attachment description that might also leak as duplicate plain text.', + color: '#2c3e50', + fields: [ + { title: 'Field 1', value: 'Value 1', short: true }, + { title: 'Field 2', value: 'Value 2', short: true }, + { title: 'Long field', value: 'This field value could also contribute to duplicate text when expanded.', short: false } + ] +}; + export const CollapsedAttachments = () => ( <> @@ -2207,6 +2221,20 @@ export const CollapsedAttachmentsLargeFont = () => ( ); +export const CollapsibleAttachmentWithText = () => ( + <> + + + +); + +export const CollapsibleAttachmentWithTextLargeFont = () => ( + <> + + + +); + const attachmentWithTextAndLink = [ { title: 'Rocket.Chat', From a27c9c15cd24e2414d76dcf352da858062377c72 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 29 Jan 2026 23:13:50 +0000 Subject: [PATCH 02/12] chore: format code and fix lint issues [skip ci] --- app/containers/message/Message.stories.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/containers/message/Message.stories.tsx b/app/containers/message/Message.stories.tsx index fd7ccfe6b1f..08048407359 100644 --- a/app/containers/message/Message.stories.tsx +++ b/app/containers/message/Message.stories.tsx @@ -2231,7 +2231,10 @@ export const CollapsibleAttachmentWithText = () => ( export const CollapsibleAttachmentWithTextLargeFont = () => ( <> - + ); From 7b34a0afdfdd9c30988276596e85d1fe225d4741 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 2 Feb 2026 11:17:33 -0300 Subject: [PATCH 03/12] fix: unit test --- .../__snapshots__/Message.test.tsx.snap | 4374 ++++++++++++++--- 1 file changed, 3561 insertions(+), 813 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 5441ced7633..bfb9a8a68b0 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -10537,6 +10537,2754 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` `; +exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1`] = ` + + + + + + + + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + This is the main message body. + + + + + + + + + + + + Collapsed attachment block + + + + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + + + Collapsed attachment block + + + + + + + This attachment text should NOT appear as plain text above the message or duplicate before the block. + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + Value 2 + + + + + + + + Long field + + + + + + This field value could also contribute to duplicate text when expanded. + + + + + + + + + + + + + + Attachment description that might also leak as duplicate plain text. + + + + + + + + + + + + This is the main message body. + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match snapshot 1`] = ` + + + + + + + + + + + + + + + + + + + + + diego.mello + + + + + + 10:00 AM + + + + + + + + This is the main message body. + + + + + + + + + + + + Collapsed attachment block + + + + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diego.mello + + + + + + 10:00 AM + + + + + + + + + + Collapsed attachment block + + + + + + + This attachment text should NOT appear as plain text above the message or duplicate before the block. + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + Value 2 + + + + + + + + Long field + + + + + + This field value could also contribute to duplicate text when expanded. + + + + + + + + + + + + + + Attachment description that might also leak as duplicate plain text. + + + + + + + + + + + + This is the main message body. + + + + + + + + + + + + + + + + +`; + exports[`Story Snapshots: ColoredAttachments should match snapshot 1`] = ` Date: Thu, 5 Feb 2026 14:33:34 -0300 Subject: [PATCH 04/12] code improvements --- app/containers/message/Components/Attachments/Quote.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/message/Components/Attachments/Quote.tsx b/app/containers/message/Components/Attachments/Quote.tsx index 0ebbd59f9d7..8a2d3a36041 100644 --- a/app/containers/message/Components/Attachments/Quote.tsx +++ b/app/containers/message/Components/Attachments/Quote.tsx @@ -13,7 +13,7 @@ const isQuoteAttachment = (file?: IAttachment): boolean => { if (file.collapsed) return false; - if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url || file.collapsed)) { + if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url )) { return false; } From c20cedc2b48c4020633753510b35c063849a5d5e Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Feb 2026 17:34:59 +0000 Subject: [PATCH 05/12] chore: format code and fix lint issues --- app/containers/message/Components/Attachments/Quote.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/message/Components/Attachments/Quote.tsx b/app/containers/message/Components/Attachments/Quote.tsx index 8a2d3a36041..5b131a78998 100644 --- a/app/containers/message/Components/Attachments/Quote.tsx +++ b/app/containers/message/Components/Attachments/Quote.tsx @@ -13,7 +13,7 @@ const isQuoteAttachment = (file?: IAttachment): boolean => { if (file.collapsed) return false; - if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url )) { + if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url)) { return false; } From 16054a2e105dab92de3c9322635638d6780a1974 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 29 Jan 2026 20:11:27 -0300 Subject: [PATCH 06/12] fix: collapsible attachment with text duplicating the content --- .../message/Components/Attachments/Quote.tsx | 2 ++ app/containers/message/Message.stories.tsx | 28 +++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/app/containers/message/Components/Attachments/Quote.tsx b/app/containers/message/Components/Attachments/Quote.tsx index 7510000367e..0ebbd59f9d7 100644 --- a/app/containers/message/Components/Attachments/Quote.tsx +++ b/app/containers/message/Components/Attachments/Quote.tsx @@ -11,6 +11,8 @@ import { getMessageFromAttachment } from '../../utils'; const isQuoteAttachment = (file?: IAttachment): boolean => { if (!file) return false; + if (file.collapsed) return false; + if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url || file.collapsed)) { return false; } diff --git a/app/containers/message/Message.stories.tsx b/app/containers/message/Message.stories.tsx index c4db7254ec3..16d1f569c66 100644 --- a/app/containers/message/Message.stories.tsx +++ b/app/containers/message/Message.stories.tsx @@ -2191,6 +2191,20 @@ const collapsedAttachments = { } ] }; + +const collapsibleAttachmentWithText = { + collapsed: true, + title: 'Collapsed attachment block', + text: 'This attachment text should NOT appear as plain text above the message or duplicate before the block.', + description: 'Attachment description that might also leak as duplicate plain text.', + color: '#2c3e50', + fields: [ + { title: 'Field 1', value: 'Value 1', short: true }, + { title: 'Field 2', value: 'Value 2', short: true }, + { title: 'Long field', value: 'This field value could also contribute to duplicate text when expanded.', short: false } + ] +}; + export const CollapsedAttachments = () => ( <> @@ -2207,6 +2221,20 @@ export const CollapsedAttachmentsLargeFont = () => ( ); +export const CollapsibleAttachmentWithText = () => ( + <> + + + +); + +export const CollapsibleAttachmentWithTextLargeFont = () => ( + <> + + + +); + const attachmentWithTextAndLink = [ { title: 'Rocket.Chat', From 8f5f201a9cb34cbd09e5a2faf7fa31ccf52ccf18 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Feb 2026 17:09:35 -0300 Subject: [PATCH 07/12] fix: snapshot test --- .../__snapshots__/Message.test.tsx.snap | 31824 ++++++---------- 1 file changed, 10978 insertions(+), 20846 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 0fbc9992eeb..53d95734b79 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -52328,13 +52328,13 @@ exports[`Story Snapshots: KatexArray should match snapshot 1`] = ` > >>>>>> develop + orderKey=":r3o:" > >>>>>> develop + orderKey=":r3o:" > >>>>>> develop + orderKey=":r3t:" > @@ -55093,8 +55081,8 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -55148,7 +55136,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -55162,19 +55150,19 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -55265,25 +55253,6 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + @@ -55635,8 +55623,8 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -55690,7 +55678,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -55704,19 +55692,19 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -55807,25 +55795,6 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + @@ -56127,8 +56115,8 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -56182,7 +56170,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -56196,19 +56184,19 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -56299,25 +56287,6 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + @@ -56669,7 +56657,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` `; -exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` @@ -56769,8 +56753,8 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -56780,7 +56764,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` testID="avatar" > @@ -56918,7 +56902,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "opacity": 1, } } - testID="username-header-diego.mello" + testID="username-header-Long name user looooong name user" > - diego.mello + Long name user looooong name user + + + 10:00 AM - - 10:00 AM - - - - - • - - - - - Dogs - - - - - - - • - - - - - cats - - - - - - - + - • - - - - - cats - - + this is a normal message - - + + @@ -57223,13 +57029,13 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` @@ -57311,8 +57115,8 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -57322,7 +57126,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` testID="avatar" > @@ -57460,7 +57264,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "opacity": 1, } } - testID="username-header-diego.mello" + testID="username-header-Long name user looooong name user" > - diego.mello + Long name user looooong name user + + + 10:00 AM + > + + +  + + + - - 10:00 AM - - - - - 1 - . - - - - - Dogs - - - - - + - 2 - . + Edited message - - - - Cats - - - - - + + @@ -57717,21 +57427,13 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r43:" > >>>>>> develop + orderKey=":r43:" > >>>>>> develop + orderKey=":r43:" > @@ -57815,8 +57514,8 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -57826,7 +57525,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` testID="avatar" > @@ -57964,7 +57663,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` "opacity": 1, } } - testID="username-header-diego.mello" + testID="username-header-Long name user looooong name user" > - diego.mello + Long name user looooong name user + + + 10:00 AM - - - 10:00 AM - - - - - - - 1 - . - - - - - Dogs - - - - - + "color": "#2F343D", + "fontSize": 16, + }, + [ + { + "lineHeight": 16, + }, + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - + - 2 - . - - - - - Cats - - + Translated message - - + + - - - -`; - -exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r44:" > >>>>>> develop + orderKey=":r44:" > >>>>>> develop + orderKey=":r44:" > - - - + +  + + + + + + + - this is a normal message + Encrypted message @@ -58753,21 +58258,403 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` >>>>>> develop + orderKey=":r45:" + > + + + + + + + + + + + + + + + + Long name user looooong name user + + + 10:00 AM + + + + + +  + + + + + + + + + + + Error message + + + + + + + + + + + + + >>>>>> develop + orderKey=":r46:" > >>>>>> develop + orderKey=":r46:" > - - -  - - - - - - - - - - - Edited message - - - - - - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - Long name user looooong name user - - - 10:00 AM +  - - - -  - - - - Translated message + Message with read receipt @@ -59573,21 +59041,13 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` >>>>>> develop + orderKey=":r47:" > >>>>>> develop + orderKey=":r47:" > >>>>>> develop + orderKey=":r47:" > + +  + - Encrypted message + Message with read receipt @@ -60018,14 +59504,10 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` >>>>>> develop + orderKey=":r48:" > >>>>>> develop + orderKey=":r48:" > -  +  - - - - - - - Error message - - +  - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - +  + + + + + > +  + + +  + - - - Long name user looooong name user - - - 10:00 AM - - - -  - - - - - - - - - Message with read receipt - - + Show all icons - - + + - + - - + + >>>>>> develop + orderKey=":r49:" > - >>>>>> develop - > - + - >>>>>> develop + + - - - - - - - - - - Long name user looooong name user - - - 10:00 AM - - - - - -  - - -  - - - - - - - - - Message with read receipt - - + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - + + - - - - - - >>>>>> develop - > - - >>>>>> develop - > - + - + - + + + - + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + + +  + + + + +  + + +  + + + + + + + + + + - - Long name user looooong name user - - - 10:00 AM - - - -  - - - - -  - - - - -  - - - - -  - - - -  - - - - - - - - - - Show all icons - - - - - - - - - - - - - >>>>>> develop - > - - >>>>>> develop - > - - - - - - - - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - + + + small message + + @@ -62080,7 +60649,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` "paddingLeft": 5, } } - testID="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.-edited" + testID="small message-edited" > + + +`; + +exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r4b:" > - - >>>>>> develop + collapsable={false} + focusable={true} + onClick={[Function]} + onResponderGrant={[Function]} + onResponderMove={[Function]} + onResponderRelease={[Function]} + onResponderTerminate={[Function]} + onResponderTerminationRequest={[Function]} + onStartShouldSetResponder={[Function]} + style={ + { + "backgroundColor": undefined, + "opacity": 1, + } + } > - - - - - - small message - - - - - - - - - - - -  - - - - -  - - - - -  - - - - -  - - - -  - - - - - - - - -`; - -exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - @@ -63021,21 +61193,13 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r4c:" > >>>>>> develop + orderKey=":r4c:" > >>>>>> develop + orderKey=":r4c:" > >>>>>> develop + orderKey=":r4d:" > >>>>>> develop + orderKey=":r4d:" > >>>>>> develop + orderKey=":r4d:" > >>>>>> develop + orderKey=":r4e:" > >>>>>> develop + orderKey=":r4e:" > >>>>>> develop + orderKey=":r4e:" > >>>>>> develop + orderKey=":r4f:" > >>>>>> develop + orderKey=":r4f:" > >>>>>> develop + orderKey=":r4g:" > >>>>>> develop + orderKey=":r4g:" > >>>>>> develop + orderKey=":r4g:" > >>>>>> develop + orderKey=":r4h:" > >>>>>> develop + orderKey=":r4h:" > >>>>>> develop + orderKey=":r4h:" > >>>>>> develop + orderKey=":r4i:" > >>>>>> develop + orderKey=":r4i:" > >>>>>> develop + orderKey=":r4j:" > >>>>>> develop + orderKey=":r4j:" > >>>>>> develop + orderKey=":r4k:" > >>>>>> develop + orderKey=":r4k:" > >>>>>> develop + orderKey=":r4l:" > >>>>>> develop + orderKey=":r4l:" > >>>>>> develop + orderKey=":r4l:" > >>>>>> develop + orderKey=":r4m:" > >>>>>> develop + orderKey=":r4m:" > >>>>>> develop + orderKey=":r4m:" > >>>>>> develop + orderKey=":r4n:" > >>>>>> develop + orderKey=":r4n:" > >>>>>> develop + orderKey=":r4n:" > >>>>>> develop + orderKey=":r4o:" > >>>>>> develop + orderKey=":r4o:" > >>>>>> develop + orderKey=":r4o:" > >>>>>> develop + orderKey=":r4p:" > >>>>>> develop + orderKey=":r4p:" > >>>>>> develop + orderKey=":r4p:" > >>>>>> develop + orderKey=":r4s:" > -  +  @@ -70444,13 +68460,13 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` -  +  @@ -70653,14 +68669,27 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot 1`] = ` + + @@ -70740,8 +68769,8 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -70795,7 +68824,7 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -70809,19 +68838,19 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -70912,25 +68941,6 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` > diego.mello - - 10:00 AM - -  +  + + 10:00 AM + @@ -71225,12 +69254,12 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` style={ [ { - "color": "#095AD2", - "fontSize": 25, + "color": "#9EA2A8", + "fontSize": 32.5, }, [ { - "lineHeight": 25, + "lineHeight": 32.5, }, { "marginTop": -5, @@ -71245,9 +69274,9 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` {}, ] } - testID="read-receipt-read" + testID="read-receipt-unread" > -  +  @@ -71256,35 +69285,14 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r50:" > >>>>>> develop + orderKey=":r50:" > >>>>>> develop + orderKey=":r50:" > -  +  @@ -71675,21 +69679,13 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot >>>>>> develop + orderKey=":r51:" > >>>>>> develop + orderKey=":r51:" > >>>>>> develop + orderKey=":r51:" > -  +  @@ -71896,22 +69888,27 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot + + +`; + +exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r52:" > >>>>>> develop + orderKey=":r52:" > >>>>>> develop + orderKey=":r52:" > @@ -71995,8 +69988,8 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -72050,7 +70043,7 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -72064,19 +70057,19 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -72167,65 +70160,34 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot > diego.mello - - -  + 10:00 AM - - - 10:00 AM - + "flexDirection": "row", + } + } + /> + - - - - I'm fine! - - - + + + I'm a very long long title and I'll break + + + + + + + How are you? + + + + + + + - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - @@ -72479,79 +70424,20 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot - - -  - - - - -`; - -exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r53:" > >>>>>> develop + orderKey=":r53:" > >>>>>> develop + orderKey=":r53:" > - I'm a very long long title and I'll break + rocket.cat - How are you? + How are you? + + + + + + + + + + + + + + + + + + rocket.cat + + + + + + + How are you? + + + + + + + + Reply attachment can have a description + + + + >>>>>> develop + orderKey=":r54:" > >>>>>> develop + orderKey=":r54:" > >>>>>> develop + orderKey=":r54:" > - - - How are you? - - + - + What you think about this one? + + + + + + + + - - - - - - - - - - - - - - - rocket.cat - - - - - - - How are you? - - - + +  + + + - - + + - - - - - Reply attachment can have a description - - - - - I'm fine! + Looks cool! @@ -73925,21 +71969,13 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` >>>>>> develop + orderKey=":r55:" > >>>>>> develop + orderKey=":r55:" > >>>>>> develop + orderKey=":r55:" > - What you think about this one? + Are you seeing this mario + + + + + + ? @@ -74572,7 +72667,7 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` - Looks cool! + Yes, I am @@ -74639,22 +72734,27 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r56:" > >>>>>> develop + orderKey=":r56:" > >>>>>> develop + orderKey=":r56:" > rocket.cat - - - - - - - - Are you seeing this mario - - - - - - ? - - - - - - - - - - -  - - - - - - + "color": "#2F343D", + }, + ] + } + > + script.sh + + + script.sh + - Yes, I am + Here is the file @@ -75417,35 +73263,14 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r57:" > >>>>>> develop + orderKey=":r57:" > >>>>>> develop + orderKey=":r57:" > - script.sh + config.yaml - - script.sh - + + + + This is a configuration file with + + + + important + + + + settings + + + + - Here is the file + Got it! @@ -75959,21 +73857,13 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` >>>>>> develop + orderKey=":r58:" > >>>>>> develop + orderKey=":r58:" > >>>>>> develop + orderKey=":r58:" > - config.yaml + index.ts + + index.ts + + + + + + + + + - + - - This is a configuration file with - - - - important - - - - settings - - + }, + { + "color": "#2F343D", + }, + ] + } + > + styles.css + + styles.css + - Got it! + Multiple files @@ -76563,22 +74518,27 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r59:" > >>>>>> develop + orderKey=":r59:" > >>>>>> develop + orderKey=":r59:" > @@ -76662,8 +74618,8 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -76717,7 +74673,7 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -76731,19 +74687,19 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -76834,25 +74790,6 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + - index.ts - - - - index.ts - - - - - - - - - - - - rocket.cat - - - styles.css + script.sh - styles.css + script.sh @@ -77170,7 +74980,7 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` - Multiple files + Here is the file @@ -77237,35 +75047,14 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r5a:" > >>>>>> develop + orderKey=":r5a:" > >>>>>> develop + orderKey=":r5a:" > - script.sh + config.yaml - - script.sh - + + + + This is a configuration file with + + + + important + + + + settings + + + + - Here is the file + Got it! @@ -77779,21 +75641,13 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot >>>>>> develop + orderKey=":r5b:" > >>>>>> develop + orderKey=":r5b:" > >>>>>> develop + orderKey=":r5b:" > - config.yaml + index.ts + + index.ts + + + + + + + + + - + - - This is a configuration file with - - - - important - - - - settings - - + }, + { + "color": "#2F343D", + }, + ] + } + > + styles.css + + styles.css + - Got it! + Multiple files @@ -78383,22 +76302,27 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot + + +`; + +exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r5c:" > >>>>>> develop + orderKey=":r5c:" > >>>>>> develop + orderKey=":r5c:" > - rocket.cat - - - index.ts + I'm a very long long title and I'll break - - index.ts - - - - - - - - - - rocket.cat - - - styles.css + } + } + > + + How are you? + + - - styles.css - - Multiple files + I'm fine! @@ -79057,35 +76844,14 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot - - -`; - -exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r5d:" > >>>>>> develop + orderKey=":r5d:" > >>>>>> develop + orderKey=":r5d:" > - I'm a very long long title and I'll break + rocket.cat - How are you? + How are you? + + + @@ -79612,21 +77420,13 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = >>>>>> develop + orderKey=":r5e:" > >>>>>> develop + orderKey=":r5e:" > >>>>>> develop + orderKey=":r5e:" > - - - How are you? + + + What you think about this one? + + + + + + - + + +  + + + - - + + @@ -80131,7 +78055,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = - I'm fine! + Looks cool! @@ -80199,21 +78123,13 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = >>>>>> develop + orderKey=":r5f:" > >>>>>> develop + orderKey=":r5f:" > >>>>>> develop + orderKey=":r5f:" > - What you think about this one? + Are you seeing this mario + + + + + + ? @@ -80846,7 +78821,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = - Looks cool! + Yes, I am @@ -80913,22 +78888,27 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = + + +`; + +exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r5g:" > >>>>>> develop + orderKey=":r5g:" > >>>>>> develop + orderKey=":r5g:" > @@ -81012,8 +78988,8 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -81067,7 +79043,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -81081,19 +79057,19 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -81184,6 +79160,25 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = > diego.mello + + 10:00 AM + - - 10:00 AM - + + + + + + How are you? + + + + + - + View thread + + + + - - + - - rocket.cat - - - - + 1 + + + + - - - - - Are you seeing this mario - - - - - - ? - - - - - - - - - - -  - - - - - - - - + "lineHeight": 24, + }, + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + 0 + - - - - - - + - Yes, I am +  - - + + @@ -81691,35 +79534,14 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = - - -`; - -exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r5h:" > >>>>>> develop + orderKey=":r5h:" > - >>>>>> develop + - - +  + + + + How are you? + + + - +  + + + + + + + + - - + } + transition={null} + width={20} + /> + + + + I'm fine! + + + + + + + + + + + + + + + + +  + + + + Thread with emoji :) 😂 + + + +  + + + + + + + - - + + + + + + + - - diego.mello - - - 10:00 AM - - - - - - - - - - - How are you? - - - - - - - - - View thread - - - - - - -  - - - 1 - - - - -  - - - 0 - - - - - - - -  - - - - - - + I'm fine! + - - + + >>>>>> develop + orderKey=":r5j:" > >>>>>> develop + orderKey=":r5j:" > - How are you? + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. >>>>>> develop + orderKey=":r5j:" style={ { "flex": 1, @@ -82703,21 +80558,13 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> develop + orderKey=":r5k:" > >>>>>> develop + orderKey=":r5k:" > - Thread with emoji :) 😂 + How are you? >>>>>> develop + orderKey=":r5k:" style={ { "flex": 1, @@ -83022,10 +80865,10 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -83056,21 +80899,13 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> develop + orderKey=":r5l:" > >>>>>> develop + orderKey=":r5l:" > >>>>>> develop + orderKey=":r5l:" style={ { "flex": 1, @@ -83375,10 +81206,10 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -83409,21 +81240,13 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> develop + orderKey=":r5m:" > >>>>>> develop + orderKey=":r5m:" > - How are you? + Thread with attachment >>>>>> develop + orderKey=":r5m:" style={ { "flex": 1, @@ -83728,32 +81547,8 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - + testID="message-content-" + /> @@ -83761,22 +81556,27 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r5n:" > >>>>>> develop + orderKey=":r5n:" > - - -  - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - -  - - - - - - + > + + - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > + + + + diego.mello + + + + - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + 10:00 AM - - - - - - - - - >>>>>> develop - > - + + + + + + How are you? + + + + + + + + + View thread + + + + + + +  + + + 1 + + + + +  + + + 0 + + + + + + + +  + + + + + + + + + + + + + + + + >>>>>> develop + orderKey=":r5o:" > @@ -84207,11 +82287,11 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` [ { "color": "#095AD2", - "fontSize": 20, + "fontSize": 26, }, [ { - "lineHeight": 20, + "lineHeight": 26, }, undefined, ], @@ -84228,7 +82308,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` - Thread with attachment + How are you? @@ -84325,8 +82405,8 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -84378,7 +82458,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -84392,33 +82472,29 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> >>>>>> develop + orderKey=":r5o:" style={ { "flex": 1, @@ -84434,8 +82510,32 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > + testID="message-content-I'm fine!" + > + + I'm fine! + + @@ -84443,35 +82543,14 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r5p:" > >>>>>> develop + orderKey=":r5p:" > - >>>>>> develop + - - - +  + + + + Thread with emoji :) 😂 + + + +  + + + + + + + + - - + } + transition={null} + width={26} + /> + + - - - - diego.mello - - - - - 10:00 AM + I'm fine! - - - - - - - How are you? - - - - - - - - - View thread - - - - - - -  - - - 1 - - - - -  - - - 0 - - - - - - - -  - - - - - - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - - - + + + + + + + + + + + + + + - How are you? + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. >>>>>> develop + orderKey=":r5q:" style={ { "flex": 1, @@ -85455,21 +83226,13 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> develop + orderKey=":r5r:" > >>>>>> develop + orderKey=":r5r:" > - Thread with emoji :) 😂 + How are you? >>>>>> develop + orderKey=":r5r:" style={ { "flex": 1, @@ -85774,10 +83533,10 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -85808,21 +83567,13 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> develop + orderKey=":r5s:" > >>>>>> develop + orderKey=":r5s:" > >>>>>> develop + orderKey=":r5s:" style={ { "flex": 1, @@ -86127,10 +83874,10 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -86161,21 +83908,13 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> develop + orderKey=":r5t:" > >>>>>> develop + orderKey=":r5t:" > - How are you? + Thread with attachment >>>>>> develop + orderKey=":r5t:" style={ { "flex": 1, @@ -86480,32 +84215,8 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - + testID="message-content-" + /> @@ -86513,22 +84224,27 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = + + +`; + +exports[`Story Snapshots: Pinned should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r5u:" > >>>>>> develop + orderKey=":r5u:" > - - -  - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - -  - - - - - - + > + + - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - - - -  - - - - Thread with attachment - - - -  - - - - - - - - - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - - - - - - - - - -`; - -exports[`Story Snapshots: Pinned should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - >>>>>> develop + orderKey=":r5v:" > >>>>>> develop + orderKey=":r5v:" > >>>>>> develop + orderKey=":r5v:" > >>>>>> develop + orderKey=":r60:" > >>>>>> develop + orderKey=":r60:" > >>>>>> develop + orderKey=":r60:" > >>>>>> develop + orderKey=":r61:" > >>>>>> develop + orderKey=":r61:" > >>>>>> develop + orderKey=":r61:" > >>>>>> develop + orderKey=":r62:" > >>>>>> develop + orderKey=":r62:" > >>>>>> develop + orderKey=":r62:" > >>>>>> develop + orderKey=":r63:" > >>>>>> develop + orderKey=":r63:" > >>>>>> develop + orderKey=":r63:" > >>>>>> develop + orderKey=":r64:" > >>>>>> develop + orderKey=":r64:" > >>>>>> develop + orderKey=":r64:" > >>>>>> develop + orderKey=":r65:" > >>>>>> develop + orderKey=":r65:" > >>>>>> develop + orderKey=":r65:" > >>>>>> develop + orderKey=":r66:" > >>>>>> develop + orderKey=":r66:" > >>>>>> develop + orderKey=":r66:" > >>>>>> develop + orderKey=":r67:" > >>>>>> develop + orderKey=":r67:" > >>>>>> develop + orderKey=":r67:" style={ { "flex": 1, @@ -93780,21 +90689,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> develop + orderKey=":r68:" > >>>>>> develop + orderKey=":r68:" > >>>>>> develop + orderKey=":r68:" style={ { "flex": 1, @@ -94016,21 +90913,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> develop + orderKey=":r69:" > >>>>>> develop + orderKey=":r69:" > >>>>>> develop + orderKey=":r69:" style={ { "flex": 1, @@ -94241,21 +91126,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont > >>>>>> develop + orderKey=":r6a:" > >>>>>> develop + orderKey=":r6a:" > >>>>>> develop + orderKey=":r6a:" > >>>>>> develop + orderKey=":r6b:" > >>>>>> develop + orderKey=":r6b:" > >>>>>> develop + orderKey=":r6f:" style={ { "flex": 1, @@ -96090,10 +92951,10 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma } > - I'm fine! + Cool! @@ -96124,13 +92985,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -96209,8 +93070,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -96262,7 +93123,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -96276,19 +93137,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> @@ -96298,7 +93159,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6c:" + orderKey=":r6g:" style={ { "flex": 1, @@ -96348,13 +93209,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -96433,8 +93294,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -96486,7 +93347,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -96500,19 +93361,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> @@ -96522,7 +93383,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6b:" + orderKey=":r6h:" style={ { "flex": 1, @@ -96551,7 +93412,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma `; -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` @@ -96645,11 +93506,11 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "color": "#095AD2", - "fontSize": 20, + "fontSize": 26, }, [ { - "lineHeight": 20, + "lineHeight": 26, }, undefined, ], @@ -96716,11 +93577,11 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "color": "#6C727A", - "fontSize": 20, + "fontSize": 26, }, [ { - "lineHeight": 20, + "lineHeight": 26, }, undefined, ], @@ -96753,7 +93614,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma style={ { "alignItems": "flex-end", - "width": 36, + "width": 46.800000000000004, } } > @@ -96763,8 +93624,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -96816,7 +93677,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -96830,19 +93691,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -96852,7 +93713,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6c:" + orderKey=":r6i:" style={ { "flex": 1, @@ -96902,13 +93763,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -96987,8 +93848,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -97040,7 +93901,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -97054,19 +93915,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -97076,7 +93937,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6d:" + orderKey=":r6j:" style={ { "flex": 1, @@ -97126,13 +93987,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -97211,8 +94072,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -97264,7 +94125,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -97278,19 +94139,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -97300,7 +94161,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6e:" + orderKey=":r6k:" style={ { "flex": 1, @@ -97350,13 +94211,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -97435,8 +94296,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -97488,7 +94349,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -97502,19 +94363,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -97524,11 +94385,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} -<<<<<<< HEAD - orderKey=":r6f:" -======= - orderKey=":r6d:" ->>>>>>> develop + orderKey=":r6l:" style={ { "flex": 1, @@ -97557,7 +94414,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma `; -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` >>>>>> develop + orderKey=":r6m:" > >>>>>> develop + orderKey=":r6m:" > - - -  - - - - How are you? - - - -  - - - - - - + > + + - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - I'm fine! - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - - - - - + - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - + + diego.mello + + + 10:00 AM + + + + + - Cool! - + + + + + + Test Button + + + + + + + Text button + + + + - - + + >>>>>> develop + orderKey=":r6n:" > >>>>>> develop + orderKey=":r6n:" > - - + > + + - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - - - - - - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - - - - - - - - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - + 🥑 + + - Test Button + + + + + Message with markdown + - - + + + + + Some text + + + + + + + + + This is a test + + + + + + + +`; + +exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r6o:" > >>>>>> develop + orderKey=":r6o:" > >>>>>> develop + orderKey=":r6o:" > @@ -99155,8 +95544,8 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -99210,7 +95599,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -99224,19 +95613,19 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -99327,25 +95716,6 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + - 🥑 - - - - - - - Message with markdown - - - - - - - - - - Some text - - - - - - - - - This is a test + Test Button @@ -99661,35 +95885,14 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot 1`] = ` - - >>>>>> develop + orderKey=":r6p:" > >>>>>> develop + orderKey=":r6p:" > >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - Test Button - - - - - - - Text button - - - - - - - - - - - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop + orderKey=":r6p:" > >>>>>> develop + orderKey=":r6q:" > >>>>>> develop + orderKey=":r6q:" > >>>>>> develop + orderKey=":r6q:" > >>>>>> develop + orderKey=":r6r:" > >>>>>> develop + orderKey=":r6r:" > >>>>>> develop + orderKey=":r6r:" > >>>>>> develop + orderKey=":r6s:" > >>>>>> develop + orderKey=":r6s:" style={ { "flex": 1, @@ -101712,8 +97439,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r6v:" > - - - - diego.mello - - - - joined the channel - - - - - - - - - - - - - - - - - - - Pinned a message: + left the channel - - left the channel + removed rocket.cat @@ -102709,7 +98230,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - removed rocket.cat + added rocket.cat @@ -102906,7 +98427,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - added rocket.cat + muted rocket.cat @@ -103103,8 +98624,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop - orderKey=":r6u:" + orderKey=":r73:" > >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM unmuted rocket.cat. " accessible={true} style={ [ @@ -103243,216 +98759,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6u:" - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - >>>>>> develop - style={ - [ - { - "backgroundColor": "transparent", - "fontFamily": "Inter", - "fontSize": 16, - "fontWeight": "400", - "textAlign": "left", - }, - { - "color": "#6C727A", - }, - ] - } - > -<<<<<<< HEAD - removed rocket.cat -======= - muted rocket.cat ->>>>>>> develop - - - - - - - - - - >>>>>> develop - accessible={true} - style={ - [ - { - "flexDirection": "row", - }, - { - "alignItems": "center", - }, - ] - } - > - - - - - - - - >>>>>> develop style={ [ { @@ -103509,11 +98812,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - added rocket.cat -======= unmuted rocket.cat ->>>>>>> develop @@ -103522,7 +98821,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop accessible={true} style={ [ @@ -103661,7 +98956,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r70:" + orderKey=":r74:" style={ { "flex": 1, @@ -103698,11 +98993,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop style={ [ { @@ -103718,11 +99009,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - muted rocket.cat -======= defined rocket.cat as admin ->>>>>>> develop @@ -103731,7 +99018,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop accessible={true} style={ [ @@ -103870,7 +99153,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r71:" + orderKey=":r75:" style={ { "flex": 1, @@ -103907,8 +99190,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - unmuted rocket.cat + removed rocket.cat as admin @@ -103933,7 +99215,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - defined rocket.cat as admin + changed room name to: New name @@ -104130,7 +99412,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop - accessibilityLabel="removed rocket.cat as admin" + accessibilityLabel="changed room description to: new description" style={ [ { @@ -104320,7 +99600,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` ] } > - removed rocket.cat as admin + changed room description to: new description @@ -104329,11 +99609,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r78:" > >>>>>> develop + orderKey=":r78:" style={ { "flex": 1, @@ -104509,7 +99781,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room name to: New name + changed room announcement to: new announcement @@ -104534,11 +99806,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r79:" > >>>>>> develop + orderKey=":r79:" style={ { "flex": 1, @@ -104714,7 +99978,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room description to: new description + changed room topic to: new topic @@ -104739,11 +100003,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r7a:" > >>>>>> develop + orderKey=":r7a:" style={ { "flex": 1, @@ -104919,7 +100175,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room announcement to: new announcement + changed room to public @@ -104944,11 +100200,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r7b:" > >>>>>> develop + orderKey=":r7b:" style={ { "flex": 1, @@ -105124,7 +100372,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room topic to: new topic + disabled E2E encryption for this room @@ -105149,11 +100397,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r7c:" > >>>>>> develop + orderKey=":r7c:" style={ { "flex": 1, @@ -105329,7 +100569,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room to public + enabled E2E encryption for this room @@ -105354,11 +100594,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r7d:" > >>>>>> develop + orderKey=":r7d:" + style={ + { + "flex": 1, + } + } + > + + + + diego.mello + + + + removed @rocket.cat from this team + + + + + + + + + + + + + + + + + + - disabled E2E encryption for this room - - - - - - - - >>>>>> develop - > - - - - - - - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - enabled E2E encryption for this room + added @rocket.cat to this team @@ -105764,11 +100988,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r7f:" > >>>>>> develop + orderKey=":r7f:" style={ { "flex": 1, @@ -105944,7 +101160,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - removed @rocket.cat from this team + added #channel-name to this team @@ -105969,11 +101185,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + orderKey=":r7g:" > >>>>>> develop + orderKey=":r7g:" style={ { "flex": 1, @@ -106149,7 +101357,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - added @rocket.cat to this team + converted #channel-name to a team @@ -106174,9 +101382,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - added #channel-name to this team + converted #channel-name to channel @@ -106373,7 +101579,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - converted #channel-name to a team + deleted #channel-name @@ -106570,8 +101776,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop - orderKey=":r7d:" + orderKey=":r7j:" > >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM removed #channel-name from this team. " accessible={true} style={ [ @@ -106710,7 +101911,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r7d:" + orderKey=":r7j:" style={ { "flex": 1, @@ -106747,11 +101948,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="removed #channel-name from this team" style={ [ { @@ -106767,11 +101964,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - added #channel-name to this team -======= - converted #channel-name to channel ->>>>>>> develop + removed #channel-name from this team @@ -106780,7 +101973,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM was removed by ABAC. " accessible={true} style={ [ @@ -106915,11 +102104,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="was removed by ABAC" style={ [ { @@ -106976,11 +102161,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - converted #channel-name to a team -======= - deleted #channel-name ->>>>>>> develop + was removed by ABAC @@ -106989,7 +102170,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM Unsupported system message. " accessible={true} style={ [ @@ -107124,11 +102301,199 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` + + + Unsupported system message + + + + + + + + +`; + +exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` + + + + + + + + + + + + + - converted #channel-name to channel + message removed @@ -107191,7 +102555,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` @@ -107237,8 +102601,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -107290,7 +102654,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107304,29 +102668,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - deleted #channel-name + joined the channel @@ -107388,7 +102752,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` @@ -107434,8 +102798,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -107487,7 +102851,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107501,29 +102865,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> >>>>>> develop - accessibilityLabel="removed #channel-name from this team" + accessibilityLabel="Pinned a message:" style={ [ { @@ -107578,20 +102940,19 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` ] } > - removed #channel-name from this team + Pinned a message: + >>>>>> develop + orderKey=":r7p:" > @@ -107637,8 +102998,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -107690,7 +103051,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107704,19 +103065,19 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -107726,11 +103087,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` importantForAccessibility="yes" orderFocusType={0} orderIndex={2} -<<<<<<< HEAD - orderKey=":r7i:" -======= - orderKey=":r7g:" ->>>>>>> develop + orderKey=":r7p:" style={ { "flex": 1, @@ -107767,7 +103124,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - was removed by ABAC + left the channel @@ -107792,207 +103149,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> develop - > - - - - - - - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - Unsupported system message - - - - - - - - -`; - -exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - - - >>>>>> develop + orderKey=":r7q:" > >>>>>> develop + orderKey=":r7q:" style={ { "flex": 1, @@ -108168,7 +103321,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - message removed + removed rocket.cat @@ -108193,8 +103346,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - joined the channel + added rocket.cat @@ -108391,7 +103543,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - Pinned a message: + muted rocket.cat - >>>>>> develop + orderKey=":r7t:" > - joined the channel + unmuted rocket.cat @@ -108791,9 +103937,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - Pinned a message: + defined rocket.cat as admin - - left the channel + removed rocket.cat as admin @@ -109190,7 +104331,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed rocket.cat + changed room name to: New name @@ -109387,7 +104528,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - added rocket.cat + changed room description to: new description @@ -109584,8 +104725,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop - orderKey=":r7o:" + orderKey=":r82:" > >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM changed room announcement to: new announcement. " accessible={true} style={ [ @@ -109720,11 +104856,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="changed room announcement to: new announcement" style={ [ { @@ -109781,11 +104913,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - removed rocket.cat -======= - muted rocket.cat ->>>>>>> develop + changed room announcement to: new announcement @@ -109794,7 +104922,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM changed room topic to: new topic. " accessible={true} style={ [ @@ -109929,11 +105053,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="changed room topic to: new topic" style={ [ { @@ -109990,11 +105110,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - added rocket.cat -======= - unmuted rocket.cat ->>>>>>> develop + changed room topic to: new topic @@ -110003,7 +105119,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM changed room to public. " accessible={true} style={ [ @@ -110138,11 +105250,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="changed room to public" style={ [ { @@ -110199,11 +105307,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` ] } > -<<<<<<< HEAD - muted rocket.cat -======= - defined rocket.cat as admin ->>>>>>> develop + changed room to public @@ -110212,7 +105316,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + accessibilityLabel="diego.mello 10:00:00 AM disabled E2E encryption for this room. " accessible={true} style={ [ @@ -110347,11 +105447,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - unmuted rocket.cat + disabled E2E encryption for this room @@ -110414,7 +105513,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - defined rocket.cat as admin + enabled E2E encryption for this room @@ -110611,7 +105710,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop - accessibilityLabel="removed rocket.cat as admin" + accessibilityLabel="removed @rocket.cat from this team" style={ [ { @@ -110801,7 +105898,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` ] } > - removed rocket.cat as admin + removed @rocket.cat from this team @@ -110810,11 +105907,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r88:" > >>>>>> develop + orderKey=":r88:" style={ { "flex": 1, @@ -110990,7 +106079,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room name to: New name + added @rocket.cat to this team @@ -111015,11 +106104,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r89:" > >>>>>> develop + orderKey=":r89:" style={ { "flex": 1, @@ -111195,7 +106276,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room description to: new description + added #channel-name to this team @@ -111220,11 +106301,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8a:" > >>>>>> develop + orderKey=":r8a:" style={ { "flex": 1, @@ -111400,7 +106473,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room announcement to: new announcement + converted #channel-name to a team @@ -111425,11 +106498,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8b:" > >>>>>> develop + orderKey=":r8b:" style={ { "flex": 1, @@ -111605,7 +106670,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room topic to: new topic + converted #channel-name to channel @@ -111630,11 +106695,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8c:" > >>>>>> develop + orderKey=":r8c:" style={ { "flex": 1, @@ -111810,7 +106867,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room to public + deleted #channel-name @@ -111835,11 +106892,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8d:" > >>>>>> develop + orderKey=":r8d:" style={ { "flex": 1, @@ -112015,7 +107064,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - disabled E2E encryption for this room + removed #channel-name from this team @@ -112040,11 +107089,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8e:" > >>>>>> develop + orderKey=":r8e:" style={ { "flex": 1, @@ -112220,7 +107261,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - enabled E2E encryption for this room + was removed by ABAC @@ -112245,11 +107286,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8f:" > >>>>>> develop + orderKey=":r8f:" style={ { "flex": 1, @@ -112403,2270 +107436,1571 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` } } > - - - diego.mello - - - - removed @rocket.cat from this team - + + Unsupported system message + + +`; + +exports[`Story Snapshots: Temp should match snapshot 1`] = ` + + >>>>>> develop + orderKey=":r8g:" > - - - + + + + + + + - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - added @rocket.cat to this team - - - - - - - - - - - - - - + > + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + Temp message + + + + + + + + - + - - - - - diego.mello - - - - added #channel-name to this team - - - - - + + + +`; + +exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` + + - - - - - - - - - - - diego.mello - - - - converted #channel-name to a team - - - - - - - - >>>>>> develop - orderKey=":r87:" - > - + + + + + + + + + + + diego.mello + + + + + + 10:00 AM + + + + + + + + Temp message + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` + + + + >>>>>> develop + accessibilityState={ + { + "busy": undefined, + "checked": undefined, + "disabled": false, + "expanded": undefined, + "selected": undefined, + } + } + accessibilityValue={ + { + "max": undefined, + "min": undefined, + "now": undefined, + "text": undefined, + } + } accessible={true} + collapsable={false} + focusable={true} + onClick={[Function]} + onResponderGrant={[Function]} + onResponderMove={[Function]} + onResponderRelease={[Function]} + onResponderTerminate={[Function]} + onResponderTerminationRequest={[Function]} + onStartShouldSetResponder={[Function]} style={ - [ - { - "flexDirection": "row", - }, - { - "alignItems": "center", - }, - ] + { + "backgroundColor": undefined, + "opacity": 1, + } } > - - - - - - - - - - diego.mello - - - >>>>>> develop - style={ - [ - { - "backgroundColor": "transparent", - "fontFamily": "Inter", - "fontSize": 16, - "fontWeight": "400", - "textAlign": "left", - }, - { - "color": "#6C727A", - }, - ] - } > -<<<<<<< HEAD - added #channel-name to this team -======= - converted #channel-name to channel ->>>>>>> develop - - - - - - - - - - >>>>>> develop - accessible={true} - style={ - [ - { - "flexDirection": "row", - }, - { - "alignItems": "center", - }, - ] - } - > - - - - - - - - - - - - diego.mello - - - >>>>>> develop - style={ - [ - { - "backgroundColor": "transparent", - "fontFamily": "Inter", - "fontSize": 16, - "fontWeight": "400", - "textAlign": "left", - }, - { - "color": "#6C727A", - }, - ] - } - > -<<<<<<< HEAD - converted #channel-name to a team -======= - deleted #channel-name ->>>>>>> develop - - - - - - - - - - >>>>>> develop - accessible={true} - style={ - [ - { - "flexDirection": "row", - }, - { - "alignItems": "center", - }, - ] - } - > - - - - + + + + + + - - - - - - - - diego.mello - - - - converted #channel-name to channel - - - - - - - - - - + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + + + Title + + + + + + + Image text + + + + + + + + + + + + + + + + this is a thumbnail + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] = ` + + + + + - - - - - - - - - - diego.mello - - - - deleted #channel-name - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - >>>>>> develop - accessibilityLabel="removed #channel-name from this team" + testID="avatar" + > + + + + + + - removed #channel-name from this team - - - - - - - - >>>>>> develop - > - - - - - - + - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - was removed by ABAC - - - - - - - - >>>>>> develop - > - - - - - - - - - - >>>>>> develop - style={ - { - "flex": 1, - } - } - > - - - Unsupported system message - - - - - - - - -`; - -exports[`Story Snapshots: Temp should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - diego.mello - - 10:00 AM - + + 10:00 AM + - - + + + + + Title + + + + + + + Image text + + + + + + + + + + + + + + - Temp message + this is a thumbnail @@ -114851,7 +109386,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` `; -exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8k:" > >>>>>> develop + orderKey=":r8k:" > >>>>>> develop + orderKey=":r8k:" > @@ -114959,8 +109482,8 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -115014,7 +109537,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -115028,19 +109551,19 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -115131,6 +109654,25 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` > diego.mello + + 10 November 2017 + - - 10:00 AM - - Temp message + Testing @@ -115243,7 +109761,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` `; -exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` +exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` >>>>>> develop + orderKey=":r8l:" > >>>>>> develop + orderKey=":r8l:" > >>>>>> develop + orderKey=":r8l:" > @@ -115351,8 +109857,8 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -115406,7 +109912,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -115420,19 +109926,19 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -115512,4659 +110018,54 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` "fontFamily": "Inter", "fontSize": 16, "fontWeight": "600", - "lineHeight": 22, - "textAlign": "left", - }, - { - "color": "#1F2329", - }, - ] - } - > - diego.mello - - - 10:00 AM - - - - - - - - - - - - - Title - - - - - - - Image text - - - - - - - - - - - - - - - - this is a thumbnail - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - - Title - - - - - - - Image text - - - - - - - - - - - - - - - - this is a thumbnail - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - 10 November 2017 - - - - - - - - - - - Testing - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - - - - 10 November 2017 - - - - - - - - Testing - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: Translated should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - -  - - - - - - - - - - - Message translated - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - - - -  - - - - - - 10:00 AM - - - - - - - - Message translated - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - - - rocket.cat - - - - - - - Custom fields - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - - - - - - - - - - - - - - - - rocket.cat - - - - - - - Custom fields 2 - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - - Value 2 - - - - - - - - - - - - - - - - - - Message - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match snapshot 1`] = ` - - - >>>>>> develop - > - >>>>>> develop - > - - - >>>>>> develop - > - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - - rocket.cat - - - - - - - Custom fields - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - - - - - - - - - - - - - - - - rocket.cat - - - - - - - Custom fields 2 - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - - Value 2 - - - - - - - - - - - + "lineHeight": 22, + "textAlign": "left", + }, + { + "color": "#1F2329", + }, + ] + } + > + diego.mello + + + + 10 November 2017 + + + - Message + Testing @@ -120235,7 +110136,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match `; -exports[`Story Snapshots: URL should match snapshot 1`] = ` +exports[`Story Snapshots: Translated should match snapshot 1`] = ` + > + + +  + + + - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. + } + } + > + + Message translated + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` + + + + + + + + + + + + + + + + + + + + diego.mello + + + + + +  + + + + + + 10:00 AM + + + - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + } + } + > + + Message translated + + @@ -120736,14 +110954,27 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` + + - - - - Message - - + + rocket.cat + + + + + + + Custom fields + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + Value 2 + + + + + + + + + + + + + + - + + rocket.cat + + + + + + + Custom fields 2 + + + + + + > + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + + Value 2 + + + + + + + - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - + + + + - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + } + } + > + + Message + + - @@ -121454,7 +112039,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` `; -exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` +exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - >>>>>> develop - > - - - - - - @@ -121947,8 +112135,8 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -122002,7 +112190,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -122016,19 +112204,19 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -122119,25 +112307,6 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - + + + + rocket.cat + + + + + + + Custom fields + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + Value 2 + + + + + + + + + + + + - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - + + + + + rocket.cat + + + + + + + Custom fields 2 + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + + Value 2 + + + + + + + + + + - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + } + } + > + + Message + + @@ -122349,15 +113116,27 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: URL should match snapshot 1`] = ` + + - - - - - - Message - - - - - - - - - Google + Rocket.Chat - Free, Open Source, Enterprise Team Chat - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - - - - - - - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` - - @@ -123122,7 +113663,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` } > + + + + + + Message + + + + + + + + - - - - - - + /> @@ -123702,111 +114253,79 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "alignItems": "center", - "flexDirection": "row", - "flexShrink": 1, + "backgroundColor": "#F7F8FA", + "borderColor": "#CBCED1", + "borderRadius": 4, + "borderWidth": 1, + "flex": 1, + "flexDirection": "column", "gap": 4, "opacity": 1, + "overflow": "hidden", } } - testID="username-header-diego.mello" > - - diego.mello - - - 10:00 AM - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - - - - + @@ -123817,7 +114336,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` `; -exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` @@ -123913,8 +114432,8 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -123968,7 +114487,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -123982,19 +114501,19 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -124085,6 +114604,25 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` > diego.mello + + 10:00 AM + - - 10:00 AM - @@ -124309,8 +114828,8 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -124364,7 +114883,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -124378,19 +114897,19 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -124481,6 +115000,25 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` > diego.mello + + 10:00 AM + - - 10:00 AM - `; -exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` >>>>>> develop > >>>>>> develop + orderKey=":r92:" > >>>>>> develop + orderKey=":r92:" > >>>>>> develop + orderKey=":r92:" > >>>>>> develop + orderKey=":r93:" > >>>>>> develop + orderKey=":r93:" > >>>>>> develop + orderKey=":r93:" > >>>>>> develop + orderKey=":r94:" > >>>>>> develop + orderKey=":r94:" > >>>>>> develop + orderKey=":r94:" > >>>>>> develop + orderKey=":r95:" > >>>>>> develop + orderKey=":r95:" > >>>>>> develop + orderKey=":r95:" > >>>>>> develop + orderKey=":r96:" > >>>>>> develop + orderKey=":r96:" > >>>>>> develop + orderKey=":r96:" > >>>>>> develop + orderKey=":r97:" > >>>>>> develop + orderKey=":r97:" > >>>>>> develop + orderKey=":r97:" > >>>>>> develop + orderKey=":r98:" > >>>>>> develop + orderKey=":r98:" > >>>>>> develop + orderKey=":r98:" > >>>>>> develop + orderKey=":r99:" > >>>>>> develop + orderKey=":r99:" > >>>>>> develop + orderKey=":r99:" > >>>>>> develop + orderKey=":r9a:" > >>>>>> develop + orderKey=":r9a:" > >>>>>> develop + orderKey=":r9a:" > >>>>>> develop + orderKey=":r9b:" > >>>>>> develop + orderKey=":r9b:" > >>>>>> develop + orderKey=":r9b:" > >>>>>> develop + orderKey=":r9c:" > >>>>>> develop + orderKey=":r9c:" > >>>>>> develop + orderKey=":r9c:" > >>>>>> develop + orderKey=":r9d:" > >>>>>> develop + orderKey=":r9d:" > >>>>>> develop + orderKey=":r9d:" > >>>>>> develop + orderKey=":r9e:" > >>>>>> develop + orderKey=":r9e:" > >>>>>> develop + orderKey=":r9e:" > >>>>>> develop + orderKey=":r9f:" > >>>>>> develop + orderKey=":r9f:" > >>>>>> develop + orderKey=":r9f:" > >>>>>> develop + orderKey=":r9g:" > >>>>>> develop + orderKey=":r9g:" > >>>>>> develop + orderKey=":r9g:" > >>>>>> develop + orderKey=":r9h:" > >>>>>> develop + orderKey=":r9h:" > >>>>>> develop + orderKey=":r9h:" > >>>>>> develop + orderKey=":r9i:" > >>>>>> develop + orderKey=":r9i:" > >>>>>> develop + orderKey=":r9i:" > >>>>>> develop + orderKey=":r9j:" > >>>>>> develop + orderKey=":r9j:" > >>>>>> develop + orderKey=":r9j:" > >>>>>> develop + orderKey=":r9k:" > >>>>>> develop + orderKey=":r9k:" > >>>>>> develop + orderKey=":r9k:" > >>>>>> develop + orderKey=":r9l:" > >>>>>> develop + orderKey=":r9l:" > >>>>>> develop + orderKey=":r9l:" > >>>>>> develop + orderKey=":r9m:" > >>>>>> develop + orderKey=":r9m:" > >>>>>> develop + orderKey=":r9m:" > >>>>>> develop + orderKey=":r9n:" > >>>>>> develop + orderKey=":r9n:" > >>>>>> develop + orderKey=":r9n:" > >>>>>> develop + orderKey=":r9o:" > >>>>>> develop + orderKey=":r9o:" > >>>>>> develop + orderKey=":r9o:" > >>>>>> develop + orderKey=":r9p:" > >>>>>> develop + orderKey=":r9p:" > >>>>>> develop + orderKey=":r9p:" > >>>>>> develop + orderKey=":r9q:" > >>>>>> develop + orderKey=":r9q:" > >>>>>> develop + orderKey=":r9q:" > >>>>>> develop + orderKey=":r9r:" > >>>>>> develop + orderKey=":r9r:" > >>>>>> develop + orderKey=":r9r:" > >>>>>> develop + orderKey=":r9s:" > >>>>>> develop + orderKey=":r9s:" > >>>>>> develop + orderKey=":r9s:" > >>>>>> develop + orderKey=":r9t:" > >>>>>> develop + orderKey=":r9t:" > >>>>>> develop + orderKey=":r9t:" > >>>>>> develop + orderKey=":r9u:" > >>>>>> develop + orderKey=":r9u:" > >>>>>> develop + orderKey=":r9u:" > >>>>>> develop + orderKey=":r9v:" > >>>>>> develop + orderKey=":r9v:" > >>>>>> develop + orderKey=":r9v:" > >>>>>> develop + orderKey=":ra0:" > >>>>>> develop + orderKey=":ra0:" > >>>>>> develop + orderKey=":ra0:" > >>>>>> develop + orderKey=":ra1:" > >>>>>> develop + orderKey=":ra1:" > >>>>>> develop + orderKey=":ra1:" > Date: Thu, 5 Feb 2026 20:11:10 +0000 Subject: [PATCH 08/12] chore: format code and fix lint issues --- app/containers/message/Message.stories.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/containers/message/Message.stories.tsx b/app/containers/message/Message.stories.tsx index 16d1f569c66..cf73c36decf 100644 --- a/app/containers/message/Message.stories.tsx +++ b/app/containers/message/Message.stories.tsx @@ -2231,7 +2231,10 @@ export const CollapsibleAttachmentWithText = () => ( export const CollapsibleAttachmentWithTextLargeFont = () => ( <> - + ); From 16790e762146e7ac90b9518372e647604a07a882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ot=C3=A1vio=20Stasiak?= <91474186+OtavioStasiak@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:16:17 -0300 Subject: [PATCH 09/12] fix: forwarding a message twice does not render the attachment (#6960) * fix: collapsible attachment with text duplicating the content * fix: nested attachment does not render * chore: storybook nested reply * fix: update snapshot test * chore: format code and fix lint issues [skip ci] * code improvements * fix: forward message between channels not rendering image * update snapshot test * fix: collapsible attachment with text duplicating the content * fix: snapshot test --------- Co-authored-by: OtavioStasiak --- .../Components/Attachments/Attachments.tsx | 21 +- .../message/Components/Attachments/Quote.tsx | 5 + app/containers/message/Message.stories.tsx | 47 + .../__snapshots__/Message.test.tsx.snap | 37747 ++++++++++------ 4 files changed, 23403 insertions(+), 14417 deletions(-) diff --git a/app/containers/message/Components/Attachments/Attachments.tsx b/app/containers/message/Components/Attachments/Attachments.tsx index b7ffb7e5481..7f1bd99d932 100644 --- a/app/containers/message/Components/Attachments/Attachments.tsx +++ b/app/containers/message/Components/Attachments/Attachments.tsx @@ -7,13 +7,19 @@ import Audio from './Audio'; import Video from './Video'; import CollapsibleQuote from './CollapsibleQuote'; import AttachedActions from './AttachedActions'; +import Reply from './Reply'; import MessageContext from '../../Context'; import { type IMessageAttachments } from '../../interfaces'; import { type IAttachment } from '../../../../definitions'; import { getMessageFromAttachment } from '../../utils'; const removeQuote = (file?: IAttachment) => - file?.image_url || file?.audio_url || file?.video_url || (file?.actions?.length || 0) > 0 || file?.collapsed; + file?.image_url || + file?.audio_url || + file?.video_url || + file?.collapsed || + (file?.actions?.length || 0) > 0 || + (file?.attachments?.length || 0) > 0; const Attachments: React.FC = React.memo( ({ attachments, timeFormat, showAttachment, getCustomEmoji, author }: IMessageAttachments) => { @@ -68,6 +74,19 @@ const Attachments: React.FC = React.memo( return ; } + if (file.attachments?.length) { + return ( + + ); + } + return null; }); return {attachmentsElements}; diff --git a/app/containers/message/Components/Attachments/Quote.tsx b/app/containers/message/Components/Attachments/Quote.tsx index 5b131a78998..60fa8c59419 100644 --- a/app/containers/message/Components/Attachments/Quote.tsx +++ b/app/containers/message/Components/Attachments/Quote.tsx @@ -13,6 +13,11 @@ const isQuoteAttachment = (file?: IAttachment): boolean => { if (file.collapsed) return false; + // Attachments with nested attachments (e.g. message link + quoted image) are rendered only by Attachments as Reply + if (file.attachments?.length) { + return false; + } + if (!file.color && !file.text && (file.image_url || file.audio_url || file.video_url)) { return false; } diff --git a/app/containers/message/Message.stories.tsx b/app/containers/message/Message.stories.tsx index cf73c36decf..5d2279eafae 100644 --- a/app/containers/message/Message.stories.tsx +++ b/app/containers/message/Message.stories.tsx @@ -1245,6 +1245,53 @@ export const MessageWithReplyLargeFont = () => ( ); +export const MessageWithNestedReplyAndFile = () => ( + <> + + + +); + export const MessageWithReplyAndFileLargeFont = () => ( <> `; -exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` +exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1`] = ` - -  - - + /> - I'm fine! + Forwarded message with file inside - - - - - - - - - - - - - - - - - - - - - - - I'm fine! - - - + + + rocket.cat + + + 10:00 AM + + + + + - - -  - - @@ -68067,13 +67957,13 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` - -  - - + /> - I'm fine! + Forwarded message with nested image + + + + + + + + rocket.cat + + + + + + + + + Nested image from forwarded message + + + + + + + + + + +  + + + + + + + + + + + + @@ -68459,14 +68659,35 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + > + + + + + + - + + diego.mello + + + 10:00 AM + + + + +  + + + + + + + + + + I'm fine! + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + -  +  @@ -68669,27 +69299,22 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -68769,8 +69398,8 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -68824,7 +69453,7 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -68838,19 +69467,19 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -68941,6 +69570,25 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot > diego.mello + + 10:00 AM + -  +  - - 10:00 AM - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -69254,12 +69895,12 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot style={ [ { - "color": "#9EA2A8", - "fontSize": 32.5, + "color": "#095AD2", + "fontSize": 25, }, [ { - "lineHeight": 32.5, + "lineHeight": 25, }, { "marginTop": -5, @@ -69274,9 +69915,9 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot {}, ] } - testID="read-receipt-unread" + testID="read-receipt-read" > -  +  @@ -69285,14 +69926,35 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot + + +`; + +exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > -  +  @@ -69679,13 +70345,21 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > -  +  @@ -69888,27 +70566,22 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot - - -`; - -exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -69988,8 +70665,8 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -70043,7 +70720,7 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -70057,19 +70734,19 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -70160,34 +70837,65 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` > diego.mello + + - 10:00 AM +  - + + 10:00 AM + - - - - - - - - I'm a very long long title and I'll break - - - - - - - How are you? - - - - - - - - - @@ -70431,13 +70972,21 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + I'm fine! + + + + + + + + + + +  + + + + + + + + + + +`; + +exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - rocket.cat + I'm a very long long title and I'll break - How are you? + How are you? - - - @@ -70936,314 +71678,54 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` + + - - - - - - rocket.cat - - - - - - - How are you? - - - - - - - - - - - - - - - Reply attachment can have a description - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - - - - What you think about this one? - - + How are you? - - - - + - - -  - - - - - + + - - - - - - Looks cool! - - - - - - - - - - - - - - - - - - + + + rocket.cat + + + + + + + How are you? + + + + + + + + + + + + + + + Reply attachment can have a description + + + + + + + + + + + + I'm fine! + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + Looks cool! + + + + + - Are you seeing this mario - - - - - - ? + What you think about this one? @@ -72666,65 +73300,6 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` - - - - - - Yes, I am - - - - - @@ -72734,27 +73309,22 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + Yes, I am + + + + + rocket.cat - - script.sh - - - script.sh - + + + + + + Are you seeing this mario + + + + + + ? + + + + + + + + + + +  + + + + + + + - - - - - - Here is the file - - - - - @@ -73263,14 +74087,35 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - config.yaml + script.sh - - - - - This is a configuration file with - - - - important - - - - settings - - - - + [ + { + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "400", + "lineHeight": 22, + "textAlign": "left", + }, + { + "color": "#2F343D", + "lineHeight": undefined, + }, + ] + } + testID="markdown-preview-script.sh" + > + script.sh + - Got it! + Here is the file @@ -73857,13 +74629,21 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - index.ts + config.yaml - - index.ts - - - - - - - - - - rocket.cat - - - styles.css + } + } + > + + This is a configuration file with + + + + important + + + + settings + + - - styles.css - - Multiple files + Got it! @@ -74518,27 +75233,22 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -74618,8 +75332,8 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -74673,7 +75387,7 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -74687,19 +75401,19 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -74790,6 +75504,25 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot > diego.mello + + 10:00 AM + - - 10:00 AM - - script.sh + index.ts - script.sh + index.ts + + + + + + + + + + + + rocket.cat + + + styles.css + + + + styles.css @@ -74980,7 +75840,7 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot - Here is the file + Multiple files @@ -75047,14 +75907,35 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot + + +`; + +exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - config.yaml + script.sh - - - - - This is a configuration file with - - - - important - - - - settings - - - - + script.sh + - Got it! + Here is the file @@ -75641,13 +76449,21 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - index.ts + config.yaml - - index.ts - - - - - - - - - - rocket.cat - - - styles.css + } + } + > + + This is a configuration file with + + + + important + + + + settings + + - - styles.css - - Multiple files + Got it! @@ -76302,27 +77053,22 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot - - -`; - -exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - I'm a very long long title and I'll break + rocket.cat + + + index.ts + + index.ts + + + + + + + + + - + - - How are you? - - + }, + { + "color": "#2F343D", + }, + ] + } + > + styles.css + + styles.css + - I'm fine! + Multiple files @@ -76844,14 +77727,35 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = + + +`; + +exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - rocket.cat + I'm a very long long title and I'll break - How are you? + How are you? - - - @@ -77420,13 +78282,21 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - - - - What you think about this one? - - + How are you? - - - - + - - -  - - - - - + + @@ -78055,7 +78801,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = - Looks cool! + I'm fine! @@ -78123,13 +78869,21 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + Looks cool! + + + + + - Are you seeing this mario - - - - - - ? + What you think about this one? @@ -78820,65 +79574,6 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = - - - - - - Yes, I am - - - - - @@ -78888,27 +79583,22 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = - - -`; - -exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -78988,8 +79682,8 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -79043,7 +79737,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -79057,19 +79751,19 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -79160,25 +79854,6 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + - How are you? + Yes, I am @@ -79257,632 +79951,445 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` - - View thread - - - - - -  - - - 1 - - - - -  - - - 0 - - - - - - -  - - - - - - - - - - - - - - - - - - - - - -  - - - - How are you? - - - -  - - - - - - - - + + + rocket.cat + + + + + + + + + Are you seeing this mario + + + + + + ? + + + + + + + + + + +  + + + + + + + + + + + + + - - - - - I'm fine! - - - - - + + + +`; + +exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - -  - - - - Thread with emoji :) 😂 - - - -  - - - - - - - + > + + - - - + + + diego.mello + + + 10:00 AM + + + + + - I'm fine! - - - - - - - - - - - - - - - - -  - + + + + + + How are you? + + + + + + + + + View thread + + + + + + +  + + + 1 + + + + +  + + + 0 + + + + + + + +  + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + +  + - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + How are you? >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -80558,13 +81373,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - How are you? + Thread with emoji :) 😂 >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -80865,10 +81692,10 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -80899,13 +81726,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -81206,10 +82045,10 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -81240,13 +82079,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - Thread with attachment + How are you? >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -81547,8 +82398,32 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > + testID="message-content-Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." + > + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + @@ -81556,27 +82431,22 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + +  + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + +  + + + + + - - - + transition={null} + width={20} + /> + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > - - - - diego.mello - - - - - 10:00 AM + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - How are you? - - - - - - - - - View thread - - - - - - -  - - - 1 - - - - -  - - - 0 - - - - - - - -  - - - - - - - - + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -82287,11 +82877,11 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = [ { "color": "#095AD2", - "fontSize": 26, + "fontSize": 20, }, [ { - "lineHeight": 26, + "lineHeight": 20, }, undefined, ], @@ -82308,7 +82898,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = - How are you? + Thread with attachment @@ -82405,8 +82995,8 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -82458,7 +83048,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -82472,29 +83062,33 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -82510,32 +83104,8 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - - I'm fine! - - + testID="message-content-" + /> @@ -82543,14 +83113,35 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = + + +`; + +exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + -  - - - - Thread with emoji :) 😂 - - - -  - - - - - - - - + > + + - - + + + + diego.mello + + + + - I'm fine! + 10:00 AM - - - - - - - - - - - - - - - -  - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - -  - - - - - - - - + + + + + + How are you? + + + + + + + > + + + View thread + + + + + + +  + + + 1 + + + + +  + + + 0 + + + + + + + +  + + + + + + - - - - - I'm fine! - - - - - + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -83533,10 +84091,10 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -83567,13 +84125,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + Thread with emoji :) 😂 >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -83874,10 +84444,10 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -83908,13 +84478,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - Thread with attachment + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -84215,8 +84797,32 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > + testID="message-content-I'm fine!" + > + + I'm fine! + + @@ -84224,27 +84830,22 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = - - -`; - -exports[`Story Snapshots: Pinned should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + +  + + + + How are you? + + + +  + + + + + - - - + transition={null} + width={26} + /> + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > - - - - diego.mello - - - 10:00 AM - - - - -  - - - - - - - - - - Message header - - - - - - + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + - - + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - +  + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + } + > + +  + + + + + - - - - - - - Message without header - - - - - - + transition={null} + width={26} + /> + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > - + -  - + ] + } + testID="message-preview-Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." + > + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + - - + + - - -`; - -exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - + + + +  + + + + Thread with attachment + + + +  + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + + + + + + + + +`; + +exports[`Story Snapshots: Pinned should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + @@ -84938,8 +85977,8 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -84993,7 +86032,7 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -85007,19 +86046,19 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -85110,6 +86149,25 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` > diego.mello + + 10:00 AM + - - 10:00 AM - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -85423,11 +86474,11 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` [ { "color": "#2F343D", - "fontSize": 20.8, + "fontSize": 16, }, [ { - "lineHeight": 20.8, + "lineHeight": 16, }, { "paddingLeft": 5, @@ -85456,7 +86507,7 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` `; -exports[`Story Snapshots: Reactions should match snapshot 1`] = ` +exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -85552,8 +86615,8 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -85607,7 +86670,7 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -85621,19 +86684,19 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -85724,34 +86787,64 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` > diego.mello + + - 10:00 AM +  - + + 10:00 AM + - Reactions + Message header - - - - - 😂 - - - 1 - - - - - - - - 99 - - - - - - - 🤔 - - - 999 - - - - - - - 🤔 - - - 9999 - - - - - - -  - - - - @@ -86337,13 +86921,21 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + Message without header + + + + + + + + + + +  + + + + + + + + + + +`; + +exports[`Story Snapshots: Reactions should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - Multiple Reactions + Reactions @@ -86741,7 +87571,7 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` "opacity": 1, } } - testID="message-reaction-:marioparty:" + testID="message-reaction-:joy:" > - + > + 😂 + - 1 + 99 @@ -86972,418 +87780,12 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "backgroundColor": "#E4E7EA", - "borderRadius": 4, - "opacity": 1, - } - } - testID="message-reaction-:nyan_rocket:" - > - - - - 1 - - - - - - - ❤️ - - - 1 - - - - - - - 🐶 - - - 1 - - - - - - - 😀 - - - 1 - - - - - 😬 + 🤔 - 1 + 999 @@ -87474,12 +87876,12 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "backgroundColor": "#E4E7EA", + "backgroundColor": "#FFFFFF", "borderRadius": 4, "opacity": 1, } } - testID="message-reaction-:grin:" + testID="message-reaction-:thinking:" > - 😁 + 🤔 - 1 + 9999 @@ -87635,27 +88037,22 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -87735,8 +88136,8 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -87790,7 +88191,7 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -87804,19 +88205,19 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -87907,6 +88308,25 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` > diego.mello + + 10:00 AM + - - 10:00 AM - - Reactions + Multiple Reactions @@ -88053,7 +88454,7 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` "opacity": 1, } } - testID="message-reaction-:joy:" + testID="message-reaction-:marioparty:" > - + - 😂 + 1 + + + + + - 99 + 1 @@ -88262,12 +88803,12 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "backgroundColor": "#FFFFFF", + "backgroundColor": "#E4E7EA", "borderRadius": 4, "opacity": 1, } } - testID="message-reaction-:thinking:" + testID="message-reaction-:heart:" > - 🤔 + ❤️ - 999 + 1 @@ -88358,12 +88899,12 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "backgroundColor": "#FFFFFF", + "backgroundColor": "#E4E7EA", "borderRadius": 4, "opacity": 1, } } - testID="message-reaction-:thinking:" + testID="message-reaction-:dog:" > - 🤔 + 🐶 - 9999 + 1 + + + + + + + 😀 + + + 1 + + + + + + + 😬 + + + 1 + + + + + + + 😁 + + + 1 @@ -88488,11 +89317,11 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` [ { "color": "#1D74F5", - "fontSize": 26, + "fontSize": 20, }, [ { - "lineHeight": 26, + "lineHeight": 20, }, undefined, ], @@ -88519,14 +89348,35 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` + + +`; + +exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - Multiple Reactions + Reactions @@ -88924,7 +89778,7 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` "opacity": 1, } } - testID="message-reaction-:marioparty:" + testID="message-reaction-:joy:" > - - - 1 + 😂 - - - - - - 1 - - - - - - - ❤️ - - - 1 - - - - - - - 🐶 - - - 1 - - - - - - - 😀 - - - 1 + 99 @@ -89561,12 +89987,12 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "backgroundColor": "#E4E7EA", + "backgroundColor": "#FFFFFF", "borderRadius": 4, "opacity": 1, } } - testID="message-reaction-:grimacing:" + testID="message-reaction-:thinking:" > - 😬 + 🤔 - 1 + 999 @@ -89657,12 +90083,12 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ { - "backgroundColor": "#E4E7EA", + "backgroundColor": "#FFFFFF", "borderRadius": 4, "opacity": 1, } } - testID="message-reaction-:grin:" + testID="message-reaction-:thinking:" > - 😁 + 🤔 - 1 + 9999 @@ -89818,27 +90244,22 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -89918,8 +90343,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -89973,7 +90398,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -89987,19 +90412,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -90090,25 +90515,6 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m > diego.mello - - 10:00 AM - + + 10:00 AM + - How are you? + Multiple Reactions @@ -90187,291 +90612,6082 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m - - View thread - + + + 1 + + - + - -  - - - 1 - - - - -  - - - 0 - - - - - + - + 1 + + + + + + - + + 1 + + + + + + -  - - + } + > + ❤️ + + + 1 + - - + + + + 🐶 + + + 1 + + + + + + + 😀 + + + 1 + + + + + + + 😬 + + + 1 + + + + + + + 😁 + + + 1 + + + + + + +  + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + How are you? + + + + + + + + + View thread + + + + + + +  + + + 1 + + + + +  + + + 0 + + + + + + + +  + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + I'm fine! + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + + + + + + + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + + + + diego.mello + + + + + + 10:00 AM + + + + + + + + How are you? + + + + + + + + + View thread + + + + + + +  + + + 1 + + + + +  + + + 0 + + + + + + + +  + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + + + + + I'm fine! + + + + + + + + + + + + + + + + + + + + + + + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` + + + + + + + + + +  + + + + How are you? + + + +  + + + + + + + + + + + + + + + + I'm fine! + + + + + + + + + + + + + + + + + + + + + + + + + + Cool! + + + + + + + + + + + + + + + + + + + + + + + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + + + + + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + I'm fine! + + + + + + + + + + + + + + + + + + + + + + + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` + + + + + + + + + +  + + + + How are you? + + + +  + + + + + + + + + + + + + + + + I'm fine! + + + + + + + + + + + + + + + + + + + + + + + + + + Cool! + + + + + + + + + + + + + + + + + + + + + + + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + + + + + + + + + + + + + + + - + + + + + + + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` + + + + +  + + + + How are you? + + + +  + + + + @@ -90550,8 +96883,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -90603,7 +96936,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -90617,19 +96950,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -90639,7 +96972,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r67:" + orderKey=":r6k:" style={ { "flex": 1, @@ -90676,9 +97009,237 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m }, ] } - testID="message-preview-I'm fine!" + testID="message-preview-I'm fine!" + > + I'm fine! + + + + + + + + + + + + + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + - I'm fine! + Cool! @@ -90689,13 +97250,21 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -90774,8 +97343,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -90827,7 +97396,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -90841,19 +97410,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -90863,7 +97432,11 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r68:" +<<<<<<< HEAD + orderKey=":r6k:" +======= + orderKey=":r6m:" +>>>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -90913,13 +97486,21 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -90998,8 +97579,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -91051,7 +97632,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -91065,74 +97646,526 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - - - - - - + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + + + + + + + + +`; + +exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + Test Button + + + + + + + Text button + + + + + + + + - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -91212,8 +98249,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -91267,7 +98304,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -91281,19 +98318,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -91384,6 +98421,25 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont > diego.mello + + 10:00 AM + - - 10:00 AM - + 🥑 + + - How are you? + + + + + Message with markdown + - - - - + "height": 8, + } + } + /> - View thread - - - - - -  - - - 1 - - - - -  - - - 0 + { + "color": "#2F343D", + }, + ] + } + > + Some text + - - + + - - + + -  + This is a test - - + + + + + + Text button + @@ -91758,14 +98755,35 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont + + +`; + +exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + > + + - - + + + + diego.mello + + + + - I'm fine! + 10:00 AM + + + + + + + Test Button + + + + + + + Text button + + + + - - + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + + - + + + diego.mello + + + + + + 10:00 AM + + + > + + + + + + 🥑 + + + + + + + Message with markdown + + + + + + + + + + Some text + + + + + + + + + This is a test + + + + + + + Text button + + + + - - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - + + + +`; + +exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + > + + - - + onLayout={[Function]} + style={ + { + "flex": 1, + } + } + > + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + Message + + + + + + + - - + + @@ -92410,7 +100204,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont `; -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` +exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - -  - - - - How are you? - - - -  - - - - - - + > + + - - + + + + diego.mello + + + + - I'm fine! + 10:00 AM + + + + + + + Message + + + + + + - - + + - - - + +`; + +exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + - - + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + - - - - - - + diego.mello + + + - - - Cool! - - - - + message removed + + - + - + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - + - + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + - + + - - - - - - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - + joined the channel + + - + - + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - + - - + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + - - - - - - + diego.mello + + + - - - + Pinned a message: + + + - + - + - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + -  + diego.mello - - - How are you? - - + -  + left the channel - + + + + + + + + + - - - - - - - + + + + + - + + + diego.mello + + + - - - I'm fine! - - - - + removed rocket.cat + + - + - + - - + - - + + + + + + + - - - - - - + diego.mello + + + - - - Cool! - - - - + added rocket.cat + + - + - + - - + + + + + + + + - - + - + + - - - - - - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - + muted rocket.cat + + - + - + - - + - - - - - + } + transition={null} + width={20} + /> - + + + + + - + diego.mello + + + - - - + unmuted rocket.cat + + - + - + - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - + - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - Test Button - - - - - - - Text button - - - - - - + accessibilityValue={ + { + "max": undefined, + "min": undefined, + "now": undefined, + "text": undefined, + } + } + accessible={true} + collapsable={false} + focusable={true} + onClick={[Function]} + onResponderGrant={[Function]} + onResponderMove={[Function]} + onResponderRelease={[Function]} + onResponderTerminate={[Function]} + onResponderTerminationRequest={[Function]} + onStartShouldSetResponder={[Function]} + style={ + { + "opacity": 1, + } + } + > + - + + + + + + diego.mello + + + + removed rocket.cat + + + + - + - - + - - - - - - - - - + + + + + + + + diego.mello + + + + added rocket.cat + + + + + + + + + + + + + + - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - 🥑 - - - - - - - Message with markdown - - - - - - - - - - Some text - - - - - - - - - This is a test - - - - - - - Text button - - - - - - + } + transition={null} + width={20} + /> - + + + + + + diego.mello + + + + muted rocket.cat + + + + - + - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot 1`] = ` - - - - + - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - Test Button - - - - - - - Text button - - - - - - + "headers": { + "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", + }, + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + }, + ] + } + style={ + { + "borderRadius": 4, + "height": 20, + "width": 20, + } + } + transition={null} + width={20} + /> - + + + + + + diego.mello + + + + unmuted rocket.cat + + + + - + - - + - - + + + + + + + - + + + defined rocket.cat as admin + + + + + + + + + + + + + + - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - 🥑 - - - - - - - Message with markdown - - - - - - - - - - Some text - - - - - - - - - This is a test - - - - - - - Text button - - - - - - + transition={null} + width={20} + /> - + + + + + + diego.mello + + + + removed rocket.cat as admin + + + + - + - - -`; - -exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - + - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - Message - - - - - - - - + transition={null} + width={20} + /> - + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + diego.mello + + + + changed room name to: New name + + + + - + - - -`; - -exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - Message - - - - - - - - + transition={null} + width={20} + /> - + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + + diego.mello + + + + changed room description to: new description + + + + - + - - -`; - -exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -97414,7 +103988,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - message removed + changed room announcement to: new announcement @@ -97439,7 +104013,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -97611,7 +104193,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - joined the channel + changed room topic to: new topic @@ -97636,7 +104218,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -97808,7 +104398,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - Pinned a message: + changed room to public - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - - - diego.mello - - - - left the channel - - - - - - - - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -98205,7 +104603,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - removed rocket.cat + disabled E2E encryption for this room @@ -98230,7 +104628,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -98402,7 +104808,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - added rocket.cat + enabled E2E encryption for this room @@ -98427,7 +104833,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -98599,7 +105013,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - muted rocket.cat + removed @rocket.cat from this team @@ -98624,7 +105038,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -98796,7 +105218,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - unmuted rocket.cat + added @rocket.cat to this team @@ -98821,7 +105243,10 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - defined rocket.cat as admin + added #channel-name to this team @@ -99018,7 +105443,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - removed rocket.cat as admin + converted #channel-name to a team @@ -99215,7 +105640,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room name to: New name + converted #channel-name to channel @@ -99412,7 +105837,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room description to: new description + deleted #channel-name @@ -99609,7 +106034,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - changed room announcement to: new announcement + added #channel-name to this team @@ -99806,7 +106232,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room topic to: new topic + converted #channel-name to a team @@ -100003,7 +106429,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room to public + converted #channel-name to channel @@ -100200,7 +106626,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` + + + + diego.mello + + + + deleted #channel-name + + + + + + + + + + + + + + + + + + - disabled E2E encryption for this room + removed #channel-name from this team @@ -100397,7 +107020,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -100569,7 +107200,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - enabled E2E encryption for this room + was removed by ABAC @@ -100594,7 +107225,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + Unsupported system message + + + + + + + + +`; + +exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -100766,7 +107601,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - removed @rocket.cat from this team + message removed @@ -100791,7 +107626,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -100837,8 +107676,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -100890,7 +107729,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -100904,29 +107743,33 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -100963,7 +107806,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - added @rocket.cat to this team + joined the channel @@ -100988,7 +107831,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -101034,8 +107881,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -101087,7 +107934,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -101101,29 +107948,33 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -101160,7 +108011,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - added #channel-name to this team + Pinned a message: + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -101231,8 +108089,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -101284,7 +108142,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -101298,29 +108156,33 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -101357,7 +108219,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - converted #channel-name to a team + left the channel @@ -101382,7 +108244,10 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` @@ -101428,8 +108293,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -101481,7 +108346,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -101495,29 +108360,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - converted #channel-name to channel + removed rocket.cat @@ -101579,7 +108444,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` @@ -101625,8 +108490,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -101678,7 +108543,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -101692,29 +108557,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - deleted #channel-name + added rocket.cat @@ -101776,7 +108641,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` @@ -101822,8 +108687,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -101875,7 +108740,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -101889,29 +108754,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - removed #channel-name from this team + muted rocket.cat @@ -101973,7 +108838,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` @@ -102019,8 +108884,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -102072,7 +108937,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -102086,29 +108951,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - was removed by ABAC + unmuted rocket.cat @@ -102170,7 +109035,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > @@ -102216,8 +109082,8 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -102269,7 +109135,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -102283,29 +109149,29 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - - Unsupported system message + + + diego.mello + + + + removed rocket.cat + - - -`; - -exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - - - message removed + added rocket.cat @@ -102555,7 +109430,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - joined the channel + muted rocket.cat @@ -102752,7 +109627,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - Pinned a message: + unmuted rocket.cat - - left the channel + defined rocket.cat as admin @@ -103149,7 +110021,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed rocket.cat + removed rocket.cat as admin @@ -103346,7 +110218,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -103518,7 +110398,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - added rocket.cat + changed room name to: New name @@ -103543,7 +110423,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -103715,7 +110603,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - muted rocket.cat + changed room description to: new description @@ -103740,7 +110628,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -103912,7 +110808,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - unmuted rocket.cat + changed room announcement to: new announcement @@ -103937,7 +110833,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -104109,7 +111013,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - defined rocket.cat as admin + changed room topic to: new topic @@ -104134,7 +111038,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -104306,7 +111218,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed rocket.cat as admin + changed room to public @@ -104331,7 +111243,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -104503,7 +111423,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room name to: New name + disabled E2E encryption for this room @@ -104528,7 +111448,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -104700,7 +111628,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room description to: new description + enabled E2E encryption for this room @@ -104725,7 +111653,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -104897,7 +111833,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room announcement to: new announcement + removed @rocket.cat from this team @@ -104922,7 +111858,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -105094,7 +112038,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room topic to: new topic + added @rocket.cat to this team @@ -105119,7 +112063,10 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room to public + added #channel-name to this team @@ -105316,7 +112263,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - disabled E2E encryption for this room + converted #channel-name to a team @@ -105513,7 +112460,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - enabled E2E encryption for this room + converted #channel-name to channel @@ -105710,7 +112657,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed @rocket.cat from this team + deleted #channel-name @@ -105907,7 +112854,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - added @rocket.cat to this team + added #channel-name to this team @@ -106104,7 +113052,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - added #channel-name to this team + converted #channel-name to a team @@ -106301,7 +113249,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - converted #channel-name to a team + converted #channel-name to channel @@ -106498,7 +113446,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - converted #channel-name to channel + deleted #channel-name @@ -106695,7 +113643,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - deleted #channel-name + removed #channel-name from this team @@ -106892,7 +113840,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -107064,7 +114020,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed #channel-name from this team + was removed by ABAC @@ -107089,7 +114045,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + style={ + { + "flex": 1, + } + } + > + + + Unsupported system message + + + + + + + + +`; + +exports[`Story Snapshots: Temp should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + > + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + + + + + + + Temp message + + + + + + + + + + - - - - - diego.mello - - - - was removed by ABAC - - - - - + + + +`; + +exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - + + + + + + + + > + + + + + diego.mello + + + + + + 10:00 AM + + + + + + + + Temp message + + + + + + + + - + - - - - Unsupported system message - - - - + `; -exports[`Story Snapshots: Temp should match snapshot 1`] = ` +exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + + Title + + + + + + + Image text + + + + + + + + + + + - Temp message + this is a thumbnail @@ -107844,7 +115608,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` `; -exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + + Title + + + + + + + Image text + + + + + + + + + + + - Temp message + this is a thumbnail @@ -108224,7 +116201,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` `; -exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` +exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - 10:00 AM + 10 November 2017 - - - - - - - Title - - - - - - - Image text - - - - - - - - - - - - this is a thumbnail + Testing @@ -108805,7 +116588,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` `; -exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - 10:00 AM + 10 November 2017 - - - - - - - Title - - - - - - - Image text - - - - - - - - - - - - this is a thumbnail + Testing @@ -109386,7 +116975,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] `; -exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` +exports[`Story Snapshots: Translated should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - 10 November 2017 + 10:00 AM + > + + +  + + + - Testing + Message translated @@ -109761,7 +117398,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` `; -exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + > + + +  + + + - 10 November 2017 + 10:00 AM - Testing + Message translated @@ -110136,7 +117821,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` `; -exports[`Story Snapshots: Translated should match snapshot 1`] = ` +exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > + + + + + + + + + rocket.cat + + + + + + + Custom fields + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + Value 2 + + + + + + + + + + + - -  - + + + + + rocket.cat + + + + + + + Custom fields 2 + + + + + + + + Field 1 + + + + + + Value 1 + + + + + + + + Field 2 + + + + + + + Value 2 + + + + + + + + + + - - - Message translated + Message @@ -110547,7 +118914,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` `; -exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > - - -  - - - + /> 10:00 AM - - - - - - - Message translated - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - + + + + + Message + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: URL should match snapshot 1`] = ` + + + + + + + + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + + + Rocket.Chat - Free, Open Source, Enterprise Team Chat + + - + + + + + + Google + + - - Message - - + }, + { + "color": "#6C727A", + }, + ] + } + > + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. @@ -112035,27 +120508,14 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match snapshot 1`] = ` - - @@ -112135,8 +120595,8 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -112190,7 +120650,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -112204,19 +120664,19 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -112277,833 +120737,888 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match onStartShouldSetResponder={[Function]} style={ { - "alignItems": "center", - "flexDirection": "row", - "flexShrink": 1, + "alignItems": "center", + "flexDirection": "row", + "flexShrink": 1, + "gap": 4, + "opacity": 1, + } + } + testID="username-header-diego.mello" + > + + diego.mello + + + 10:00 AM + + + + + + + + + + + Message + + + + + + + + + - - diego.mello - - - - - - 10:00 AM - - - - - + - - - - rocket.cat - - - - - - - Custom fields - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - - - - - - - - + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "400", + "textAlign": "left", + }, + { + "color": "#6C727A", + }, + ] + } + > + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + + + + + + + + + + + + + + + + + + + + + - - + - - - - rocket.cat - - - - - - - Custom fields 2 - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - - Value 2 - - - - - - - - - - + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "400", + "textAlign": "left", + }, + { + "color": "#6C727A", + }, + ] + } + > + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` + + + + + + + + + + + + + + + + + + + + + diego.mello + + + 10:00 AM + + + + + - + - - Message - - + }, + { + "color": "#6C727A", + }, + ] + } + > + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. @@ -113116,27 +121631,15 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match - - -`; - -exports[`Story Snapshots: URL should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > Date: Thu, 5 Feb 2026 17:20:57 -0300 Subject: [PATCH 10/12] fix: remove getAvatarSuggestion deprecated method (#6948) * chore: type of getAvatarSuggestion * chore: add getAvatarSuggestion endpoint and backward compatibility * chore: format code and fix lint issues [skip ci] --------- Co-authored-by: OtavioStasiak --- app/definitions/rest/v1/users.ts | 8 +++++++- app/lib/services/restApi.ts | 16 ++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/app/definitions/rest/v1/users.ts b/app/definitions/rest/v1/users.ts index fa624a5dea7..751cfbf83fb 100644 --- a/app/definitions/rest/v1/users.ts +++ b/app/definitions/rest/v1/users.ts @@ -1,4 +1,4 @@ -import { type IProfileParams } from '../../IProfile'; +import { type IAvatarSuggestion, type IProfileParams } from '../../IProfile'; import type { ITeam } from '../../ITeam'; import type { IUser, INotificationPreferences, IUserPreferences, IUserRegistered } from '../../IUser'; @@ -48,6 +48,12 @@ export type UsersEndpoints = { 'users.getUsernameSuggestion': { GET: () => { result: string }; }; + 'users.getAvatarSuggestion': { + GET: () => { + suggestions: { [service: string]: IAvatarSuggestion }; + success: boolean; + }; + }; 'users.resetAvatar': { POST: (params: { userId: string }) => {}; }; diff --git a/app/lib/services/restApi.ts b/app/lib/services/restApi.ts index 95ad3f86c7e..fae53447715 100644 --- a/app/lib/services/restApi.ts +++ b/app/lib/services/restApi.ts @@ -677,9 +677,21 @@ export const getRoomRoles = ( // RC 0.65.0 sdk.get(`${roomTypeToApiType(type)}.roles`, { roomId }); -export const getAvatarSuggestion = (): Promise<{ [service: string]: IAvatarSuggestion }> => +export const getAvatarSuggestion = async (): Promise<{ [service: string]: IAvatarSuggestion }> => { + const serverVersion = reduxStore.getState().server.version; + + if (compareServerVersion(serverVersion, 'greaterThanOrEqualTo', '5.4.0')) { + // RC 5.4.0 + const result = await sdk.get('users.getAvatarSuggestion'); + if (result.success && 'suggestions' in result) { + return result.suggestions; + } + return {}; + } + // RC 0.51.0 - sdk.methodCallWrapper('getAvatarSuggestion'); + return sdk.methodCallWrapper('getAvatarSuggestion'); +}; export const resetAvatar = (userId: string) => // RC 0.55.0 From ce2adc34a69d0bf2221d945637999214f450c0c1 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Feb 2026 17:24:25 -0300 Subject: [PATCH 11/12] fix: snapshot test --- .../__snapshots__/Message.test.tsx.snap | 7799 ++++++----------- 1 file changed, 2876 insertions(+), 4923 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 044a2db8f95..e45b052681c 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -68673,21 +68673,21 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -81373,21 +81373,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -81726,21 +81726,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -82079,21 +82079,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -82432,21 +82432,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -82785,21 +82785,21 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -83127,21 +83127,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -84125,21 +84125,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -84478,21 +84478,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -84831,21 +84831,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -85184,21 +85184,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -85537,21 +85537,21 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -85879,21 +85879,21 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) ======= - orderKey=":r63:" ->>>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - - - - - - - - - Message without header - - - - - - - - - - -  - - - - - - - - - - -`; - -exports[`Story Snapshots: Reactions should match snapshot 1`] = ` - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - >>>>>> 189f8b23b (fix: snapshot test) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) + > + + + + + + + + + + + Message without header + + + + + + + + + + +  + + + + + + + + + + +`; + +exports[`Story Snapshots: Reactions should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -92450,21 +92450,21 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -92686,21 +92686,21 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -92911,21 +92911,21 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > + + +  + + + + How are you? + + + +  + + + + @@ -93874,8 +93991,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -93927,7 +94044,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -93941,29 +94058,29 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -94013,13 +94130,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont @@ -94098,8 +94215,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -94151,7 +94268,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -94165,29 +94282,29 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> + testID="message-content-Cool!" + > + + Cool! + + @@ -94212,27 +94353,14 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` - - - - -  - - - - How are you? - - - -  - - - - - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -94567,13 +94578,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -94757,10 +94771,10 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma } > - Cool! + I'm fine! @@ -94791,13 +94805,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma >>>>>> 189f8b23b (fix: snapshot test) accessibilityLabel="diego.mello 10:00:00 AM thread message Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.. " accessible={true} style={ @@ -94866,7 +94882,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma style={ { "alignItems": "flex-end", - "width": 36, + "width": 46.800000000000004, } } > @@ -94876,8 +94892,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -94929,7 +94945,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -94943,19 +94959,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -94965,7 +94981,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6g:" + orderKey=":r6e:" style={ { "flex": 1, @@ -95015,13 +95031,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -95100,8 +95116,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -95153,7 +95169,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95167,19 +95183,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -95189,10 +95205,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6h:" -======= - orderKey=":r6d:" ->>>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + orderKey=":r6f:" style={ { "flex": 1, @@ -95208,32 +95221,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma } > - - I'm fine! - - + testID="message-content-" + /> @@ -95241,14 +95230,27 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` + + + + +  + + + + How are you? + + + +  + + + + @@ -95327,8 +95446,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -95380,7 +95499,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95394,29 +95513,29 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -95466,13 +95585,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -95551,8 +95670,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -95604,7 +95723,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95618,29 +95737,29 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> + testID="message-content-Cool!" + > + + Cool! + + @@ -95665,27 +95808,14 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` - - - - -  - - - - How are you? - - - -  - - - - - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -96020,13 +96033,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma - - Cool! - - + testID="message-content-" + /> @@ -96243,14 +96232,27 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` + + + + +  + + + + How are you? + + + +  + + + + @@ -96329,8 +96448,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -96382,7 +96501,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -96396,29 +96515,29 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -96468,13 +96587,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -96553,8 +96672,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -96606,7 +96725,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -96620,29 +96739,33 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -96658,8 +96781,32 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma } > + testID="message-content-Cool!" + > + + Cool! + + @@ -96667,27 +96814,22 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > - - -  - - - - How are you? - - - -  - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -96988,10 +97017,10 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont } > - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -97022,13 +97051,21 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -97216,32 +97253,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont } > - - Cool! - - + testID="message-content-" + /> @@ -97249,22 +97262,35 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont + + +`; + +exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > - + > + + - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - style={ - { - "flex": 1, - } - } - > - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - style={ - { - "flex": 1, - } - } - > - - - - - - - - - - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -100806,11 +100371,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -101011,11 +100576,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -101219,11 +100784,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -101424,9 +100989,6 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -103603,11 +103168,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -103808,11 +103373,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -104013,11 +103578,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -104218,11 +103783,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -104423,11 +103988,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -104628,11 +104193,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -104833,11 +104398,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -105038,11 +104603,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -105243,9 +104808,6 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -107225,11 +106790,11 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -107421,11 +106986,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -107626,11 +107191,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -107831,11 +107396,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -108039,11 +107604,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -108244,9 +107809,6 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -110423,11 +109988,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -110628,11 +110193,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -110833,11 +110398,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) ======= - orderKey=":r85:" ->>>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - changed room topic to: new topic - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - - - - - - - - >>>>>> 189f8b23b (fix: snapshot test) + style={ + { + "flex": 1, + } + } + > + + + + diego.mello + + + + changed room topic to: new topic + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) + > + + + + + + + + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -111243,11 +110808,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -111448,11 +111013,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -111653,11 +111218,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -111858,11 +111423,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -112063,9 +111628,6 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) > >>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -114045,11 +113610,11 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -114241,21 +113806,21 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) ======= - orderKey=":r8m:" +>>>>>>> 189f8b23b (fix: snapshot test) + > + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) + > + + + + + + + + + + + + + + diego.mello + + + 10 November 2017 + + + + + + + + + + + Testing + + + + + + + + + + + + + + + + +`; + +exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` + + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) + > + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > @@ -116309,8 +116261,8 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -116364,7 +116316,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -116378,19 +116330,19 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -116481,25 +116433,6 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` > diego.mello - - 10 November 2017 - + + 10 November 2017 + `; -exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: Translated should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > @@ -116696,8 +116649,8 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, }, { "marginTop": 4, @@ -116751,7 +116704,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={46.800000000000004} + height={36} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -116765,19 +116718,19 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", }, ] } style={ { "borderRadius": 4, - "height": 46.800000000000004, - "width": 46.800000000000004, + "height": 36, + "width": 36, } } transition={null} - width={46.800000000000004} + width={36} /> @@ -116868,6 +116821,25 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` > diego.mello + + 10:00 AM + + > + + +  + + + - - 10 November 2017 - - Testing + Message translated @@ -116975,7 +116963,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` `; -exports[`Story Snapshots: Translated should match snapshot 1`] = ` +exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > @@ -117084,8 +117072,8 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -117139,7 +117127,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -117153,19 +117141,19 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -117256,25 +117244,6 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + `; -exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` +exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - - - - - - - - - - - - diego.mello - - - - - -  - - - - - - 10:00 AM - - - - - - - - Message translated - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > - Value 2 - - - - - - - - - - - - - - - - - - Message - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: URL should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - Message - - - - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - - + Value 2 + + + + + + + + + + + + + - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + } + } + > + + Message + + - @@ -121226,7 +119572,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` `; -exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` +exports[`Story Snapshots: URL should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + orderKey=":r8s:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) +======= +>>>>>>> 189f8b23b (fix: snapshot test) > Date: Thu, 5 Feb 2026 17:25:59 -0300 Subject: [PATCH 12/12] fix: snapshot test --- .../__snapshots__/Message.test.tsx.snap | 8791 +++-------------- 1 file changed, 1566 insertions(+), 7225 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index e45b052681c..bd55ccaf24c 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -68674,20 +68674,12 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -81374,20 +81086,12 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -81727,20 +81427,12 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -82080,20 +81768,12 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -82433,20 +82109,12 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -82786,20 +82450,12 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -83128,20 +82780,12 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -84126,20 +83754,12 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -84479,20 +84095,12 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -84832,20 +84436,12 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -85185,20 +84777,12 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -85538,20 +85118,12 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -85880,20 +85448,12 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -92451,20 +91899,12 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -92687,20 +92123,12 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -92912,20 +92336,12 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > - - -  - - - - How are you? - - - -  - - - - @@ -93991,8 +93277,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -94044,7 +93330,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -94058,25 +93344,25 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - I'm fine! + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. @@ -94190,7 +93476,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > @@ -94215,8 +93501,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -94268,7 +93554,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -94282,25 +93568,25 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> - - Cool! - - + testID="message-content-" + /> @@ -94353,6 +93615,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont + + +`; + +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` + + @@ -94414,7 +93689,124 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > + + +  + + + + How are you? + + + +  + + + + - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + I'm fine! @@ -94638,7 +94030,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) style={ { "flex": 1, @@ -94771,10 +94160,10 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > - I'm fine! + Cool! @@ -94865,8 +94254,6 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > >>>>>> 189f8b23b (fix: snapshot test) accessibilityLabel="diego.mello 10:00:00 AM thread message Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.. " accessible={true} style={ @@ -94882,7 +94269,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont style={ { "alignItems": "flex-end", - "width": 46.800000000000004, + "width": 36, } } > @@ -94892,8 +94279,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -94945,7 +94332,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -94959,19 +94346,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> @@ -94981,7 +94368,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6e:" + orderKey=":r6i:" style={ { "flex": 1, @@ -95031,13 +94418,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont @@ -95116,8 +94503,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -95169,7 +94556,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95183,19 +94570,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> @@ -95205,7 +94592,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6f:" + orderKey=":r6j:" style={ { "flex": 1, @@ -95234,7 +94621,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont `; -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should match snapshot 1`] = ` +exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` @@ -95328,11 +94715,11 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "color": "#095AD2", - "fontSize": 20, + "fontSize": 26, }, [ { - "lineHeight": 20, + "lineHeight": 26, }, undefined, ], @@ -95399,11 +94786,11 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "color": "#6C727A", - "fontSize": 20, + "fontSize": 26, }, [ { - "lineHeight": 20, + "lineHeight": 26, }, undefined, ], @@ -95436,7 +94823,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma style={ { "alignItems": "flex-end", - "width": 36, + "width": 46.800000000000004, } } > @@ -95446,8 +94833,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -95499,7 +94886,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95513,19 +94900,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -95535,7 +94922,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6g:" + orderKey=":r6k:" style={ { "flex": 1, @@ -95585,13 +94972,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -95670,8 +95057,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -95723,7 +95110,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95737,19 +95124,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -95759,7 +95146,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6h:" + orderKey=":r6l:" style={ { "flex": 1, @@ -95809,13 +95196,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma @@ -95894,8 +95281,8 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma [ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, }, undefined, ] @@ -95947,7 +95334,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "top": "50%", } } - height={20} + height={26} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -95961,19 +95348,19 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", }, ] } style={ { "borderRadius": 4, - "height": 20, - "width": 20, + "height": 26, + "width": 26, } } transition={null} - width={20} + width={26} /> @@ -95983,7 +95370,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma importantForAccessibility="yes" orderFocusType={0} orderIndex={2} - orderKey=":r6i:" + orderKey=":r6m:" style={ { "flex": 1, @@ -96033,13 +95420,13 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma - - - - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont should match snapshot 1`] = ` - - - - - - - - - -  - - - - How are you? - - - -  - - - - - - I'm fine! - - + testID="message-content-" + /> @@ -96586,14 +95619,27 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont + + +`; + +exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` + + - - + > + + - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - + + + diego.mello + + + 10:00 AM + + + + + - Cool! - + + + + + + Test Button + + + + + + + Text button + + + + - - + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - - - - - - - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6p:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6p:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6p:" > + 🥑 + + - Test Button + + + + + Message with markdown + - - + + + + + Some text + + + + + + + + + This is a test + + + + + + + +`; + +exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6q:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6q:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6q:" > @@ -97814,8 +96753,8 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, }, { "marginTop": 4, @@ -97869,7 +96808,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` "top": "50%", } } - height={36} + height={46.800000000000004} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -97883,19 +96822,19 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=72", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=93.60000000000001", }, ] } style={ { "borderRadius": 4, - "height": 36, - "width": 36, + "height": 46.800000000000004, + "width": 46.800000000000004, } } transition={null} - width={36} + width={46.800000000000004} /> @@ -97986,25 +96925,6 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` > diego.mello - - 10:00 AM - + + 10:00 AM + - 🥑 - - - - - - - Message with markdown - - - - - - - - - - Some text - - - - - - - - - This is a test + Test Button @@ -98320,35 +97094,14 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - - -`; - -exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6r:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6r:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - Test Button - - - - - - - Text button - - - - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6r:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - Message - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - message removed - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - joined the channel - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - Pinned a message: - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - left the channel - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - removed rocket.cat - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - added rocket.cat - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - muted rocket.cat - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - unmuted rocket.cat - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) - > - - - - - - - - - - - - - - diego.mello - - - - removed rocket.cat - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - added rocket.cat - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - muted rocket.cat - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - unmuted rocket.cat - - - - - - - - >>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - - - - - - diego.mello - - - - defined rocket.cat as admin - - - - - - - - - + + + - - + + + + + + + - - - - - - - - diego.mello - - - - removed rocket.cat as admin - - - - + "flex": 1, + } + } + > + + + + diego.mello + + + + + + 10:00 AM + + + + + + + + Message + + + + + + + + + + + - + + + +`; + +exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6u:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6u:" style={ { "flex": 1, @@ -103143,7 +98623,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room name to: New name + message removed @@ -103168,11 +98648,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6v:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r6v:" style={ { "flex": 1, @@ -103348,7 +98820,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room description to: new description + joined the channel @@ -103373,11 +98845,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r70:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r70:" style={ { "flex": 1, @@ -103553,7 +99017,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room announcement to: new announcement + Pinned a message: - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - > - - - - - - - - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - changed room topic to: new topic - - + pointerEvents="none" + /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r71:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r71:" style={ { "flex": 1, @@ -103963,7 +99217,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - changed room to public + left the channel @@ -103988,11 +99242,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r72:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r72:" style={ { "flex": 1, @@ -104168,7 +99414,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - disabled E2E encryption for this room + removed rocket.cat @@ -104193,11 +99439,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r73:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r73:" style={ { "flex": 1, @@ -104373,7 +99611,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - enabled E2E encryption for this room + added rocket.cat @@ -104398,11 +99636,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r74:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r74:" style={ { "flex": 1, @@ -104578,7 +99808,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - removed @rocket.cat from this team + muted rocket.cat @@ -104603,11 +99833,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r75:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) - style={ - { - "flex": 1, - } - } - > - - - - diego.mello - - - - added @rocket.cat to this team - - - - - - - - - - - - - - - - - - - added #channel-name to this team + unmuted rocket.cat @@ -105005,7 +100030,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - converted #channel-name to a team + defined rocket.cat as admin @@ -105202,7 +100227,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - converted #channel-name to channel + removed rocket.cat as admin @@ -105399,7 +100424,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - deleted #channel-name + changed room name to: New name @@ -105596,9 +100621,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + orderKey=":r79:" > - added #channel-name to this team + changed room description to: new description @@ -105795,7 +100818,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - converted #channel-name to a team + changed room announcement to: new announcement @@ -105992,7 +101015,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - converted #channel-name to channel + changed room topic to: new topic @@ -106189,7 +101212,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - deleted #channel-name + changed room to public @@ -106386,9 +101409,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7d:" > - removed #channel-name from this team + disabled E2E encryption for this room @@ -106585,11 +101606,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7e:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7e:" style={ { "flex": 1, @@ -106765,7 +101778,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` - was removed by ABAC + enabled E2E encryption for this room @@ -106790,11 +101803,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7f:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7f:" style={ { "flex": 1, @@ -106948,49 +101953,54 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` } } > - - Unsupported system message + + + diego.mello + + + + removed @rocket.cat from this team + - - -`; - -exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7g:" > @@ -107036,8 +102046,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -107089,7 +102099,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107103,33 +102113,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7g:" style={ { "flex": 1, @@ -107166,7 +102172,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - message removed + added @rocket.cat to this team @@ -107191,11 +102197,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7h:" > @@ -107241,8 +102243,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -107294,7 +102296,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107308,33 +102310,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7h:" style={ { "flex": 1, @@ -107371,7 +102369,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - joined the channel + added #channel-name to this team @@ -107396,11 +102394,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7i:" > @@ -107446,8 +102440,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -107499,7 +102493,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107513,33 +102507,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7i:" style={ { "flex": 1, @@ -107576,7 +102566,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - Pinned a message: + converted #channel-name to a team - >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7j:" > @@ -107654,8 +102637,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -107707,7 +102690,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107721,33 +102704,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7j:" style={ { "flex": 1, @@ -107784,7 +102763,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - left the channel + converted #channel-name to channel @@ -107809,7 +102788,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` @@ -107855,8 +102834,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -107908,7 +102887,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -107922,29 +102901,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> - removed rocket.cat + deleted #channel-name @@ -108006,7 +102985,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` @@ -108052,8 +103031,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -108105,7 +103084,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -108119,29 +103098,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> - added rocket.cat + removed #channel-name from this team @@ -108203,7 +103182,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` @@ -108249,8 +103228,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -108302,7 +103281,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -108316,29 +103295,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> - muted rocket.cat + was removed by ABAC @@ -108400,7 +103379,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` @@ -108446,8 +103425,8 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` [ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, }, undefined, ] @@ -108499,7 +103478,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "top": "50%", } } - height={26} + height={20} nativeViewRef={"[React.ref]"} onError={[Function]} onLoad={[Function]} @@ -108513,29 +103492,29 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` "headers": { "User-Agent": "RC Mobile; ios unknown; vunknown (unknown)", }, - "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=52", + "uri": "https://open.rocket.chat/avatar/diego.mello?format=png&size=40", }, ] } style={ { "borderRadius": 4, - "height": 26, - "width": 26, + "height": 20, + "width": 20, } } transition={null} - width={26} + width={20} /> - - - diego.mello - - - - unmuted rocket.cat - + + Unsupported system message + + +`; + +exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` + + >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + orderKey=":r7o:" > - removed rocket.cat + message removed @@ -108796,7 +103764,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - added rocket.cat + joined the channel @@ -108993,7 +103961,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - muted rocket.cat + Pinned a message: + - unmuted rocket.cat + left the channel @@ -109387,9 +104358,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7s:" > - defined rocket.cat as admin + removed rocket.cat @@ -109586,7 +104555,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed rocket.cat as admin + added rocket.cat @@ -109783,11 +104752,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7u:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7u:" style={ { "flex": 1, @@ -109963,7 +104924,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room name to: New name + muted rocket.cat @@ -109988,11 +104949,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7v:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r7v:" style={ { "flex": 1, @@ -110168,7 +105121,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room description to: new description + unmuted rocket.cat @@ -110193,11 +105146,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r80:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r80:" style={ { "flex": 1, @@ -110373,7 +105318,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room announcement to: new announcement + defined rocket.cat as admin @@ -110398,11 +105343,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r81:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r81:" style={ { "flex": 1, @@ -110578,7 +105515,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room topic to: new topic + removed rocket.cat as admin @@ -110603,11 +105540,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r82:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r82:" style={ { "flex": 1, @@ -110783,7 +105712,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - changed room to public + changed room name to: New name @@ -110808,11 +105737,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r83:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r83:" style={ { "flex": 1, @@ -110988,7 +105909,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - disabled E2E encryption for this room + changed room description to: new description @@ -111013,11 +105934,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r84:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r84:" style={ { "flex": 1, @@ -111193,7 +106106,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - enabled E2E encryption for this room + changed room announcement to: new announcement @@ -111218,11 +106131,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r85:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r85:" style={ { "flex": 1, @@ -111398,7 +106303,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - removed @rocket.cat from this team + changed room topic to: new topic @@ -111423,11 +106328,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r86:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r86:" style={ { "flex": 1, @@ -111603,7 +106500,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - added @rocket.cat to this team + changed room to public @@ -111628,7 +106525,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - added #channel-name to this team + disabled E2E encryption for this room @@ -111825,7 +106722,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - converted #channel-name to a team + enabled E2E encryption for this room @@ -112022,7 +106919,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - converted #channel-name to channel + removed @rocket.cat from this team @@ -112219,7 +107116,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` - deleted #channel-name + added @rocket.cat to this team @@ -112416,9 +107313,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) + orderKey=":r8b:" > >>>>>> 189f8b23b (fix: snapshot test) + orderKey=":r8f:" > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -113611,10 +108496,6 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) style={ { "flex": 1, @@ -113807,20 +108684,12 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) > >>>>>> d2aa920e3 (fix: forwarding a message twice does not render the attachment (#6960)) -======= ->>>>>>> 189f8b23b (fix: snapshot test) >