Index: /views/mods/mod_productvariants/produkt_addedit_content_combination.phtml
===================================================================
--- /views/mods/mod_productvariants/produkt_addedit_content_combination.phtml	(revision 8277)
+++ /views/mods/mod_productvariants/produkt_addedit_content_combination.phtml	(revision 8278)
@@ -69,6 +69,6 @@
 				<h3 class="panel-title">
 					{{combination.label}}
-					<span v-if="combination.id > 0" class="glyphicon glyphicon-pencil" @click.prevent="edit(combination.var_key)"></span>
-					<span v-else class="glyphicon glyphicon-plus" @click.prevent="add(combination.var_key)"></span>
+					<span v-if="combination.id > 0" class="glyphicon glyphicon-pencil" @click.prevent="edit(combination)"></span>
+					<span v-else class="glyphicon glyphicon-plus" @click.prevent="add(combination)"></span>
 				</h3>
 			</div>
@@ -224,8 +224,11 @@
 				
 			}
-			const add = (combination_key) => {
-
+			const add = (combination) => {
+
+				combination.loaded = true;
+				combination.loading = true;
+				
 				xhr('add', {
-					var_key: combination_key,
+					var_key: combination.var_key,
 					product_id: product_id.value
 				}, (response) => {
@@ -246,8 +249,11 @@
 				
 			};
-			const edit = (combination_key) => {
-			
+			const edit = (combination) => {
+			
+				combination.loaded = true;
+				combination.loading = true;
+				
 				xhr('edit', {
-					var_key: combination_key,
+					var_key: combination.var_key,
 					product_id: product_id.value
 				}, (response) => {
