You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/screens/shockers/hub_item.dart
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -231,14 +231,6 @@ class HubItemState extends State<HubItem> {
231
231
],
232
232
),
233
233
actions: [
234
-
TextButton(
235
-
onPressed: () {
236
-
Navigator.of(context).pop();
237
-
},
238
-
child:Text("Cancel")),
239
-
TextButton(
240
-
onPressed: () =>showCurrentToken(isCurrent:true),
241
-
child:Text("Show current")),
242
234
TextButton(
243
235
onPressed: () async {
244
236
LoadingDialog.show("Regenerating token");
@@ -274,7 +266,15 @@ class HubItemState extends State<HubItem> {
274
266
});
275
267
}
276
268
},
277
-
child:Text("Regenerate"))
269
+
child:Text("Regenerate")),
270
+
TextButton(
271
+
onPressed: () =>showCurrentToken(isCurrent:true),
272
+
child:Text("Show current")),
273
+
TextButton(
274
+
onPressed: () {
275
+
Navigator.of(context).pop();
276
+
},
277
+
child:Text("Cancel")),
278
278
]);
279
279
}));
280
280
}
@@ -318,7 +318,7 @@ class HubItemState extends State<HubItem> {
318
318
builder: (builder) =>AlertDialog.adaptive(
319
319
title:Text("Captive portal"),
320
320
content:Text(
321
-
"The captive portal is the website hosted on your hub itself. It's only available in your wifi ans is used for managing the wifi connection and account linking. Here you can enable or disable it."),
321
+
"The captive portal is the website hosted on your hub itself. It's only available in your wifi and is used for managing the wifi connection and account linking. Here you can enable or disable it."),
0 commit comments