From 0fe63dff1b4c7fb06ce3e0ba9f5879a32f09ed1d Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 12 Jul 2024 10:47:08 +0200 Subject: [PATCH] native: fix delete button --- native/MainPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/MainPage.qml b/native/MainPage.qml index ed66e91..2cb18eb 100644 --- a/native/MainPage.qml +++ b/native/MainPage.qml @@ -205,7 +205,7 @@ Rectangle { start: jsonResponse[i].licenses[ii].start ?? "Indefinitely", end: jsonResponse[i].licenses[ii].end ?? "Indefinitely", amount: jsonResponse[i].licenses[ii].amount ? jsonResponse[i].licenses[ii].amount.toString() : "∞", - key: jsonResponse[i].licenses[ii].key + key: jsonResponse[i].licenses[ii].id }); } }