Skip to content

Commit

Permalink
Update ChatDoc files (#3)
Browse files Browse the repository at this point in the history
Co-authored-by: Germey <[email protected]>
  • Loading branch information
Germey and Germey authored Mar 17, 2024
1 parent 69d08af commit 22710ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/pages/console/application/Buy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ import {
ElForm,
ElFormItem,
ElButton,
ElInputNumber,
ElDivider,
ElRadioGroup,
ElRadioButton
Expand All @@ -106,7 +105,6 @@ export default defineComponent({
ElCard,
ElForm,
ElFormItem,
ElInputNumber,
ElButton,
ElDivider,
ElRadioGroup,
Expand Down
5 changes: 2 additions & 3 deletions src/pages/console/application/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ import { defineComponent } from 'vue';
import { applicationOperator } from '@/operators';
import Pagination from '@/components/common/Pagination.vue';
import CopyToClipboard from '@/components/common/CopyToClipboard.vue';
import { ElTable, ElRow, ElCol, ElTableColumn, ElButton, ElCard } from 'element-plus';
import { ElTable, ElRow, ElCol, ElTableColumn } from 'element-plus';
import { ROUTE_CONSOLE_APPLICATION_BUY } from '@/router/constants';
import { IApplication, IApplicationListResponse, IApplicationType, ICredentialType, IService } from '@/models';
import { IApplication, IApplicationListResponse, IService } from '@/models';
interface IData {
applications: IApplication[];
Expand All @@ -98,7 +98,6 @@ export default defineComponent({
ElRow,
ElCol,
ElTableColumn,
ElButton,
ElCard
},
data(): IData {
Expand Down
4 changes: 2 additions & 2 deletions src/router/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ export default {
}
},
{
path: 'conversation',
path: 'conversations',
name: ROUTE_CHAT_CONVERSATION_NEW,
component: () => import('@/pages/chat/Conversation.vue')
},
{
path: 'conversation/:id',
path: 'conversations/:id',
name: ROUTE_CHAT_CONVERSATION,
component: () => import('@/pages/chat/Conversation.vue')
}
Expand Down

0 comments on commit 22710ba

Please sign in to comment.