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 7c92863 + 8b76d06 commit 6d7f834Copy full SHA for 6d7f834
shell/pages/c/_cluster/settings/index.vue
@@ -1,8 +1,13 @@
1
<script>
2
+import { h } from 'vue';
3
import { NAME as SETTINGS } from '@shell/config/product/settings';
4
import { MANAGEMENT } from '@shell/config/types';
5
6
export default {
7
+ render() {
8
+ // Suppress warning: Component is missing template or render function
9
+ return h('div');
10
+ },
11
beforeCreate() {
12
const hasSettings = !!this.$store.getters[`management/schemaFor`](MANAGEMENT.SETTING);
13
0 commit comments