harvester-ui-extension/pkg/harvester/edit/harvesterhci.io.logging.clusteroutput.vue
Francesco Torchia 4626d56acd
Lint fixes
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-11-12 11:50:20 +01:00

22 lines
648 B
Vue

<script>
import { LAST_NAMESPACE } from '@shell/store/prefs';
import CreateEditView from './harvesterhci.io.logging.output';
export default {
extends: CreateEditView,
created() {
if (this.isCreate) {
this.value.metadata.namespace = 'cattle-logging-system';
}
this.registerAfterHook(() => {
const allNamespaces = this.$store.getters['allNamespaces'];
const defaultNamepsace = allNamespaces.find((N) => N.id === 'default');
const ns = defaultNamepsace?.id || allNamespaces?.[0]?.id || '';
this.value.$dispatch('prefs/set', { key: LAST_NAMESPACE, value: ns }, { root: true });
});
}
};
</script>