mirror of
https://github.com/foss42/apidash.git
synced 2025-05-20 15:56:34 +08:00
feat: environment pane
This commit is contained in:
6
lib/utils/envvar_utils.dart
Normal file
6
lib/utils/envvar_utils.dart
Normal file
@ -0,0 +1,6 @@
|
||||
String getEnvironmentTitle(String? name) {
|
||||
if (name == null || name.trim() == "") {
|
||||
return "untitled";
|
||||
}
|
||||
return name;
|
||||
}
|
Reference in New Issue
Block a user