Skip to content

Commit 9f405a5

Browse files
Boop Version things
1 parent 0a675a3 commit 9f405a5

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

lib/components/shell/status_bar.dart

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,14 @@ class StatusBar extends StatelessWidget {
5050
selector: _saveSignature,
5151
builder: (BuildContext context, String signature) => _saveNote(),
5252
),
53-
const dom.span(
53+
// Not const: constant span instances skip attribute patching, which
54+
// drops the tooltip (same shape as the footer above).
55+
// ignore: prefer_const_constructors
56+
dom.span(
5457
classes: 'hui-status-item hui-status-version',
55-
attributes: <String, String>{'title': 'Editor build'},
56-
<Widget>[Text(huiBuildBadge)],
58+
attributes: const <String, String>{'title': 'Editor build'},
59+
// ignore: prefer_const_literals_to_create_immutables
60+
<Widget>[const Text(huiBuildBadge)],
5761
),
5862
],
5963
);

0 commit comments

Comments
 (0)