Fix floating number, menu font size

This commit is contained in:
Bossanyi Tibor
2020-07-08 09:34:34 +02:00
parent 9e6b1f2703
commit eac21c5241
10 changed files with 49 additions and 35 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class CustomerApi {
Future<void> saveCustomer(Customer customer) async {
String body = JsonEncoder().convert(customer.toJson());
print(" ===== saving exerciseType id: " + customer.customerId.toString() + ":" + body );
print(" ===== saving customer id: " + customer.customerId.toString() + ":" + body );
await _client.post(
"customers/"+customer.customerId.toString(),
body);