We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c5b924 + edfa496 commit b46fa98Copy full SHA for b46fa98
src/resources/qml/ValueTabs.qml
@@ -123,7 +123,7 @@ Repeater {
123
return open()
124
}
125
126
- viewModel.renameKey(keyTab.keyIndex, newKeyName.text)
+ viewModel.renameKey(keyTab.tabIndex, newKeyName.text)
127
128
129
visible: false
@@ -149,7 +149,7 @@ Repeater {
149
text: "Do you really want to delete this key?"
150
onYes: {
151
console.log("remove key")
152
- viewModel.removeKey(keyTab.keyIndex)
+ viewModel.removeKey(keyTab.tabIndex)
153
154
155
modality: Qt.ApplicationModal
@@ -195,7 +195,7 @@ Repeater {
195
196
197
198
- viewModel.setTTL(keyTab.keyIndex, newTTL.text)
+ viewModel.setTTL(keyTab.tabIndex, newTTL.text)
199
200
201
0 commit comments