We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38358ab commit d723254Copy full SHA for d723254
src/Our.Umbraco.CopyVariant/App_Plugins/Our.Umbraco.CopyVariant/contentapp.controller.js
@@ -46,6 +46,7 @@
46
47
variant.tabs.forEach(function (tab) {
48
tab.properties.forEach(function (property) {
49
+
50
if (property.culture != null) {
51
vm.properties.push({
52
alias: property.alias,
@@ -91,10 +92,6 @@
91
92
).then(r => {
93
culture.state = "success";
94
culture.loading = false;
-
95
96
97
- vm.reload();
98
}, e => {
99
culture.state = "error";
100
@@ -103,10 +100,8 @@
103
}
104
101
105
102
vm.reload = function () {
106
- vm.loading = true;
107
108
- windo
109
+ vm.loading = true
+ window.location.reload();
110
111
112
function init() {
0 commit comments