We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7c1fed commit 9690957Copy full SHA for 9690957
documentation/changelog.md
@@ -1,5 +1,8 @@
1
# Changelog
2
3
+## 0.83.1
4
+* Update invalid controller method reference
5
+
6
## 0.83.0
7
* Allow opening in new tab for common controls
8
src/js/layouts/adminDefault.vue
@@ -110,7 +110,10 @@ export default {
110
this.currentControllerType = ControllerType;
111
}
112
113
- if (controller.method && this.$refs.currentController[controller.method]) {
+ if (
114
+ this.$refs.currentController &&
115
+ this.$refs.currentController[controller.method]
116
+ ) {
117
118
this.$nextTick(() => {
119
this.$refs.currentController[controller.method](
0 commit comments