diff --git a/pkg/harvester/dialog/ConfirmExecutionDialog.vue b/pkg/harvester/dialog/ConfirmExecutionDialog.vue index 6f7a398a..55abeaed 100644 --- a/pkg/harvester/dialog/ConfirmExecutionDialog.vue +++ b/pkg/harvester/dialog/ConfirmExecutionDialog.vue @@ -6,7 +6,6 @@ import AsyncButton from '@shell/components/AsyncButton'; import { Banner } from '@components/Banner'; import { Card } from '@components/Card'; import { escapeHtml } from '@shell/utils/string'; -import CopyToClipboardText from '@shell/components/CopyToClipboardText'; /** * @name ConfirmExecutionDialog @@ -21,7 +20,6 @@ export default { AsyncButton, Banner, Card, - CopyToClipboardText }, props: { @@ -36,7 +34,7 @@ export default { }, data() { - return { errors: [], confirmName: '' }; + return { errors: [] }; }, computed: { @@ -66,10 +64,6 @@ export default { }, ''); }, - nameToMatch() { - return this.resources[0].nameDisplay; - }, - plusMore() { const remaining = this.resources.length - this.names.length; @@ -96,10 +90,6 @@ export default { return this.$store.getters['type-map/labelFor'](schema, this.resources.length); }, - applyDisabled() { - return this.confirmName !== this.nameToMatch; - }, - protip() { return this.t('dialog.confirmExecution.protip', { alternateLabel }); }, @@ -109,7 +99,6 @@ export default { escapeHtml, close() { - this.confirmName = ''; this.errors = []; this.$emit('close'); }, @@ -132,7 +121,6 @@ export default {