File tree Expand file tree Collapse file tree
packages/devtools_app/lib/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ extension type _UserAgentSpecificMemoryBreakdownAttributionElement._(JSObject _)
6565@JS ()
6666extension type _UserAgentSpecificMemoryBreakdownAttributionContainerElement ._(
6767 JSObject _
68- )
69- implements JSObject {
68+ ) implements JSObject {
7069 external String get id;
7170
7271 external String get url;
Original file line number Diff line number Diff line change @@ -257,10 +257,7 @@ class HoverCard {
257257 final overlaySize = overlayBox.size;
258258 final localPosition = overlayBox.globalToLocal (event.position);
259259
260- final maxX = math.max (
261- hoverMargin,
262- overlaySize.width - hoverMargin - width,
263- );
260+ final maxX = math.max (hoverMargin, overlaySize.width - hoverMargin - width);
264261 final x = (localPosition.dx - (width / 2.0 )).clamp (hoverMargin, maxX);
265262
266263 final maxY = math.max (
You can’t perform that action at this time.
0 commit comments