Skip to content

Commit

Permalink
fix: 修复自定义属性单词拼写错误 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kkuil authored Nov 3, 2023
1 parent 1181c89 commit 0db0375
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ declare module '@vue/runtime-core' {
ElAvatar: typeof import('element-plus/es')['ElAvatar']
ElBadge: typeof import('element-plus/es')['ElBadge']
ElButton: typeof import('element-plus/es')['ElButton']
ElCollapse: typeof import('element-plus/es')['ElCollapse']
ElCollapseItem: typeof import('element-plus/es')['ElCollapseItem']
ElDialog: typeof import('element-plus/es')['ElDialog']
ElDivider: typeof import('element-plus/es')['ElDivider']
ElDrawer: typeof import('element-plus/es')['ElDrawer']
Expand Down
2 changes: 1 addition & 1 deletion src/components/RenderMessage/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defineProps<{ message: MsgType }>()
<component
:is="componentMap[message.type]"
:body="message.body"
:data-messasge-id="message.id"
:data-message-id="message.id"
:draggable="userStore.isSign ? 'true' : 'false'"
/>
</template>
2 changes: 1 addition & 1 deletion src/services/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default {
createGroup: `${prefix}/capi/room/group`, // 新增群组
getGroupUserList: `${prefix}/capi/room/public/group/member/page`,
inviteGroupMember: `${prefix}/capi/room/group/member`, // 邀请群成员
exitGroup: `${prefix}/capi/room/group/member`, // 退群
exitGroup: `${prefix}/capi/room/group/member/exit`, // 退群
addAdmin: `${prefix}/capi/room/group/admin`, // 添加管理员
revokeAdmin: `${prefix}/capi/room/group/admin`, // 添加管理员
groupDetail: `${prefix}/capi/room/public/group`, // 群组详情
Expand Down

0 comments on commit 0db0375

Please sign in to comment.