Skip to content

Commit 81d9d80

Browse files
Fix mobile styles and update tooltip content
Signed-off-by: Adhitya Mamallan <adhitya.mamallan@uber.com>
1 parent 8a46cf0 commit 81d9d80

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

src/views/workflow-history-v2/config/workflow-history-switch-to-v1-button-tooltip-content.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ import { type ViewToggleTooltipContentConfig } from '../workflow-history-view-to
55
const workflowHistorySwitchToV1ButtonTooltipContentConfig: ViewToggleTooltipContentConfig =
66
{
77
content: [
8-
`The purpose of the new History view is to provide a more compact and
9-
informative overview, including previews, flexible grouped and ungrouped
10-
layouts, deeplinking, and several additional enhancements for
11-
improved navigation and usability.`,
8+
`The new History view provides a more compact overview with a table-based
9+
format designed for information density and easier scanning, helping you
10+
find important events faster.`,
1211
`Please feel free to share any feedback if you encounter anything
1312
that seems suboptimal in the new History view.`,
1413
],

src/views/workflow-history-v2/workflow-history-header/workflow-history-header.styles.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ export const styled = {
5757
display: 'flex',
5858
gap: $theme.sizing.scale600,
5959
...$theme.typography.HeadingXSmall,
60+
flexDirection: 'column',
61+
[$theme.mediaQuery.medium]: {
62+
alignItems: 'center',
63+
flexDirection: 'row',
64+
},
6065
})
6166
),
6267
Actions: createStyled(

src/views/workflow-history/config/workflow-history-switch-to-v2-button-tooltip-content.config.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import { type ViewToggleTooltipContentConfig } from '@/views/workflow-history-v2
33
const workflowHistorySwitchToV2ButtonTooltipContentConfig: ViewToggleTooltipContentConfig =
44
{
55
content: [
6-
`The new Workflow History UI provides a more compact and informative
7-
overview of your workflow's history, with several enhancements for
8-
improved navigation and usability.`,
6+
`The new Workflow History UI provides a table-based layout with a more compact
7+
overview of your workflow's history, including aggregated event summaries (shown
8+
inline and in a Summary tab), color codes for different event types, a floating
9+
navigation bar for quick event discovery, and a sticky header.`,
910
`Click to try it out!`,
1011
],
1112
};

src/views/workflow-history/workflow-history-header/workflow-history-header.styles.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ export const styled = {
5151
display: 'flex',
5252
gap: $theme.sizing.scale600,
5353
...$theme.typography.HeadingXSmall,
54+
flexDirection: 'column',
55+
[$theme.mediaQuery.medium]: {
56+
alignItems: 'center',
57+
flexDirection: 'row',
58+
},
5459
})
5560
),
5661
Actions: createStyled(

0 commit comments

Comments
 (0)