This commit is contained in:
Vincent Fiduccia 2020-11-26 02:39:54 -07:00
parent 8746ab077c
commit 5372b33230
No known key found for this signature in database
GPG Key ID: 2B29AD6BB2BB2582
4 changed files with 3 additions and 5 deletions

View File

@ -50,7 +50,7 @@ export default {
const hasEditComponent = getters['type-map/hasCustomEdit'](resource);
const yamlRoute = {
name: `${ this.$route.name }-create`,
name: `${ this.$route.name }-create`,
params,
query: { [AS]: _YAML },
};

View File

@ -7,7 +7,7 @@ import { asciiLike, escapeHtml } from '@/utils/string';
import { base64Encode, base64Decode } from '@/utils/crypto';
import { downloadFile } from '@/utils/download';
import TextAreaAutoGrow from '@/components/form/TextAreaAutoGrow';
import DetailText from '@/components/DetailText';
// import DetailText from '@/components/DetailText';
import { get } from '@/utils/object';
import { mapGetters } from 'vuex';
import FileSelector from '@/components/form/FileSelector';
@ -17,7 +17,7 @@ const LARGE_LIMIT = 2 * 1024;
export default {
components: {
TextAreaAutoGrow,
DetailText,
// DetailText,
FileSelector
},

View File

@ -1,7 +1,6 @@
<script>
import RadioButton from '@/components/form/RadioButton';
import { _VIEW } from '@/config/query-params';
import { findBy } from '@/utils/array';
export default {
components: { RadioButton },

View File

@ -1,7 +1,6 @@
<script>
import { parseSi, UNITS, FRACTIONAL } from '@/utils/units';
import LabeledInput from '@/components/form/LabeledInput';
import LabeledFormElement from '@/mixins/labeled-form-element';
export default {
components: { LabeledInput },