Skip to content

Commit dea2146

Browse files
authored
Merge branch 'main' into test-all-ci
2 parents 1c963f4 + 03b75be commit dea2146

32 files changed

+56
-90
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
"style-loader": "^4.0.0",
179179
"stylelint": "^16.23.0",
180180
"stylelint-config-idiomatic-order": "^10.0.0",
181-
"stylelint-config-standard": "^38.0.0",
181+
"stylelint-config-standard": "^39.0.0",
182182
"typescript": "^5.8.3",
183183
"webpack": "^5.101.3",
184184
"webpack-cli": "^6.0.1",

src/components/app/AppHeader.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export class AppHeader extends React.PureComponent<{}> {
2222
id="AppHeader--app-header"
2323
elems={{
2424
header: (
25-
// $FlowExpectError Flow doesn't know about this fluent rule for react component.
2625
<InnerNavigationLink
2726
dataSource="none"
2827
className="appHeaderLink"

src/components/app/CompareHome.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.compareHomeForm {
1818
display: grid;
1919
align-items: center;
20-
grid-gap: 1em;
20+
gap: 1em;
2121
grid-template-columns: auto 1fr;
2222
}
2323

src/components/app/Home.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,6 @@ class HomeImpl extends React.PureComponent<HomeProps, HomeState> {
660660
id="Home--compare-recordings-info"
661661
elems={{
662662
a: (
663-
// $FlowExpectError Flow doesn't know about this fluent rule for react component.
664663
<InnerNavigationLink dataSource="compare">
665664
Compare
666665
</InnerNavigationLink>

src/components/app/KeyboardShortcut.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
.appKeyboardShortcutsContent {
6565
display: grid;
6666
margin: 40px;
67-
grid-gap: 80px;
67+
gap: 80px;
6868
grid-template-columns: 1fr 1fr;
6969
}
7070

src/components/flame-graph/Canvas.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
.flameGraphCanvasTooltip > .tooltipHeader {
2020
display: grid;
21-
grid-gap: 2px 0;
21+
gap: 2px 0;
2222
grid-template-columns: min-content auto;
2323
}
2424

src/components/js-tracer/Chart.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ class JsTracerExpensiveChartImpl extends React.PureComponent<Props> {
104104
chartProps={{
105105
jsTracerTimingRows,
106106
jsTracerTable,
107-
// $FlowFixMe Error introduced by upgrading to v0.96.0. See issue #1936.
108107
updatePreviewSelection,
109108
rangeStart: timeRange.start,
110109
rangeEnd: timeRange.end,

src/components/marker-chart/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ class MarkerChartImpl extends React.PureComponent<Props> {
153153
getMarker,
154154
getMarkerLabel,
155155
markerListLength,
156-
// $FlowFixMe Error introduced by upgrading to v0.96.0. See issue #1936.
157156
updatePreviewSelection,
158157
changeMouseTimePosition,
159158
changeRightClickedMarker,

src/components/shared/CodeView.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@
128128
.cm-content {
129129
font-family: ui-monospace, 'Roboto Mono', monospace;
130130
hyphens: none;
131+
overflow-wrap: normal;
131132
word-break: normal;
132133
word-spacing: normal;
133-
word-wrap: normal;
134134
}
135135

136136
/**

src/components/sidebar/sidebar.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
display: grid;
2222
align-content: start; /* the grid isn't vertically stretched */
2323
align-items: center;
24-
grid-gap: 2px 5px;
24+
gap: 2px 5px;
2525
grid-template-columns:
2626
/* Label */
2727
1fr
@@ -51,7 +51,7 @@
5151

5252
.sidebar-title-label {
5353
display: grid;
54-
grid-gap: 5px;
54+
gap: 5px;
5555
grid-template-columns: min-content 1fr;
5656
}
5757

0 commit comments

Comments
 (0)