|
76 | 76 | </template> |
77 | 77 |
|
78 | 78 | <script lang="ts"> |
| 79 | +import { IdentifierType, IdentifierTypeType } from 'src/types' |
| 80 | +import { byError, identifiersQueries } from 'src/error-filtering' |
79 | 81 | import { computed, defineComponent, nextTick, onUpdated, ref } from 'vue' |
| 82 | +import { moveDown, moveUp } from 'src/updown' |
| 83 | +import IdentifierCardEditing from 'components/IdentifierCardEditing.vue' |
| 84 | +import IdentifierCardViewing from 'components/IdentifierCardViewing.vue' |
80 | 85 | import SchemaGuideLink from 'components/SchemaGuideLink.vue' |
81 | 86 | import Stepper from 'components/Stepper.vue' |
82 | 87 | import StepperActions from 'components/StepperActions.vue' |
83 | | -import IdentifierCardEditing from 'components/IdentifierCardEditing.vue' |
84 | | -import IdentifierCardViewing from 'components/IdentifierCardViewing.vue' |
85 | | -import { IdentifierType, IdentifierTypeType } from 'src/types' |
| 88 | +import { scrollToBottom } from 'src/scroll-to-bottom' |
86 | 89 | import { useCff } from 'src/store/cff' |
87 | | -import { scrollToBottom } from '../scroll-to-bottom' |
88 | | -import { moveDown, moveUp } from '../updown' |
89 | | -import { useValidation } from 'src/store/validation' |
90 | | -import { byError, identifiersQueries } from 'src/error-filtering' |
91 | 90 | import { useStepperErrors } from 'src/store/stepper-errors' |
| 91 | +import { useValidation } from 'src/store/validation' |
92 | 92 |
|
93 | 93 | export default defineComponent({ |
94 | 94 | name: 'ScreenIdentifiers', |
|
0 commit comments