Minor fix to variable declaration
Some checks failed
Build Flutter Web and Docker Image for Local Registry / Build Flutter Web App (push) Failing after 3m6s
Some checks failed
Build Flutter Web and Docker Image for Local Registry / Build Flutter Web App (push) Failing after 3m6s
This commit is contained in:
parent
ad2c94c29a
commit
051c05f43f
@ -24,9 +24,9 @@ class StatusPageState extends State<StatusPage> with WidgetsBindingObserver {
|
||||
late StreamController<dynamic> controller;
|
||||
List<Map<String, dynamic>> messages = [];
|
||||
final Map<String, ImageProvider> _imageCache = {};
|
||||
final wsBaseUrl = String.fromEnvironment('WS_BASE_URL',
|
||||
static const wsBaseUrl = String.fromEnvironment('WS_BASE_URL',
|
||||
defaultValue: 'ws://localhost:8080');
|
||||
final restBaseUrl = String.fromEnvironment('REST_BASE_URL',
|
||||
static const restBaseUrl = String.fromEnvironment('REST_BASE_URL',
|
||||
defaultValue: 'http://localhost:8080');
|
||||
|
||||
@override
|
||||
|
Loading…
Reference in New Issue
Block a user