mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-14 05:52:51 +00:00
Improved server version check
This commit is contained in:
parent
c2af933eb5
commit
34bff2f506
29 changed files with 77 additions and 57 deletions
|
@ -75,7 +75,7 @@ class _AddedListState extends State<AddedList> {
|
|||
final width = MediaQuery.of(context).size.width;
|
||||
|
||||
void confirmEditClient(Client client) async {
|
||||
ProcessModal processModal = ProcessModal(context: context);
|
||||
ProcessModal processModal = ProcessModal();
|
||||
processModal.open(AppLocalizations.of(context)!.addingClient);
|
||||
|
||||
final result = await clientsProvider.editClient(client);
|
||||
|
@ -99,7 +99,7 @@ class _AddedListState extends State<AddedList> {
|
|||
}
|
||||
|
||||
void deleteClient(Client client) async {
|
||||
ProcessModal processModal = ProcessModal(context: context);
|
||||
ProcessModal processModal = ProcessModal();
|
||||
processModal.open(AppLocalizations.of(context)!.removingClient);
|
||||
|
||||
final result = await clientsProvider.deleteClient(client);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue