mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00
allow blank values in settings
This commit is contained in:
parent
845fa4e79c
commit
78c06cc699
1 changed files with 1 additions and 3 deletions
|
@ -19,9 +19,7 @@ class VersionListTile extends StatelessWidget {
|
|||
builder: (_) => ReleaseNotesDialog(version: snapshot.data!.version),
|
||||
)
|
||||
: null,
|
||||
trailing: snapshot.data != null
|
||||
? Text(S.of(context).versionNumber(snapshot.data!.version, snapshot.data!.buildNumber))
|
||||
: const SizedBox.shrink(),
|
||||
trailing: Text(S.of(context).versionNumber(snapshot.data?.version ?? '', snapshot.data?.buildNumber ?? '')),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue