Commit 27ca0ee2 authored by Justin Ho's avatar Justin Ho

Update jira_import_form.vue to use GlTableLite

And update the Vue app name
parent a5147079
...@@ -12,7 +12,7 @@ import { ...@@ -12,7 +12,7 @@ import {
GlLoadingIcon, GlLoadingIcon,
GlSearchBoxByType, GlSearchBoxByType,
GlSprintf, GlSprintf,
GlTable, GlTableLite,
} from '@gitlab/ui'; } from '@gitlab/ui';
import { debounce } from 'lodash'; import { debounce } from 'lodash';
import { getIdFromGraphQLId } from '~/graphql_shared/utils'; import { getIdFromGraphQLId } from '~/graphql_shared/utils';
...@@ -45,7 +45,7 @@ export default { ...@@ -45,7 +45,7 @@ export default {
GlLoadingIcon, GlLoadingIcon,
GlSearchBoxByType, GlSearchBoxByType,
GlSprintf, GlSprintf,
GlTable, GlTableLite,
}, },
currentUsername: gon.current_username, currentUsername: gon.current_username,
dropdownLabel, dropdownLabel,
...@@ -295,7 +295,7 @@ export default { ...@@ -295,7 +295,7 @@ export default {
<p>{{ $options.userMappingMessage }}</p> <p>{{ $options.userMappingMessage }}</p>
<gl-table :fields="$options.tableConfig" :items="userMappings" fixed> <gl-table-lite :fields="$options.tableConfig" :items="userMappings" fixed>
<template #cell(arrow)> <template #cell(arrow)>
<gl-icon name="arrow-right" :aria-label="__('Will be mapped to')" /> <gl-icon name="arrow-right" :aria-label="__('Will be mapped to')" />
</template> </template>
...@@ -326,7 +326,7 @@ export default { ...@@ -326,7 +326,7 @@ export default {
</gl-dropdown-text> </gl-dropdown-text>
</gl-dropdown> </gl-dropdown>
</template> </template>
</gl-table> </gl-table-lite>
<gl-loading-icon v-if="isInitialLoadingState" size="sm" /> <gl-loading-icon v-if="isInitialLoadingState" size="sm" />
......
...@@ -20,6 +20,7 @@ export default function mountJiraImportApp() { ...@@ -20,6 +20,7 @@ export default function mountJiraImportApp() {
return new Vue({ return new Vue({
el, el,
name: 'JiraImportRoot',
apolloProvider, apolloProvider,
render(createComponent) { render(createComponent) {
return createComponent(App, { return createComponent(App, {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment