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 {
GlLoadingIcon,
GlSearchBoxByType,
GlSprintf,
GlTable,
GlTableLite,
} from '@gitlab/ui';
import { debounce } from 'lodash';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
......@@ -45,7 +45,7 @@ export default {
GlLoadingIcon,
GlSearchBoxByType,
GlSprintf,
GlTable,
GlTableLite,
},
currentUsername: gon.current_username,
dropdownLabel,
......@@ -295,7 +295,7 @@ export default {
<p>{{ $options.userMappingMessage }}</p>
<gl-table :fields="$options.tableConfig" :items="userMappings" fixed>
<gl-table-lite :fields="$options.tableConfig" :items="userMappings" fixed>
<template #cell(arrow)>
<gl-icon name="arrow-right" :aria-label="__('Will be mapped to')" />
</template>
......@@ -326,7 +326,7 @@ export default {
</gl-dropdown-text>
</gl-dropdown>
</template>
</gl-table>
</gl-table-lite>
<gl-loading-icon v-if="isInitialLoadingState" size="sm" />
......
......@@ -20,6 +20,7 @@ export default function mountJiraImportApp() {
return new Vue({
el,
name: 'JiraImportRoot',
apolloProvider,
render(createComponent) {
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