This commit is contained in:
DASHU
2025-01-22 16:29:22 +08:00
parent 9d570c8e4f
commit 4b51e81e48
2 changed files with 1 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ class _AppDetailPermissionItemComponent
@override
Widget build(BuildContext context) {
s = S.of(context);
var permissionText = AuthType.getAuthName(context, widget.authType);
if (widget.eventKind != null) {
permissionText += " (${s.EventKind} ${widget.eventKind})";

View File

@@ -51,7 +51,6 @@ class _AppDetailRouter extends State<AppDetailRouter> {
if (arg != null && arg is App) {
if (app == null || app!.id != arg.id) {
app = App.fromJson(arg.toJson());
print(app!.name);
nameController.text = app!.name ?? "";
}
}