fix: remove wip name
This commit is contained in:
parent
834c9ac343
commit
3beaddf0bd
2 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
<span class="member-display-name">{{ getDisplayName(props.member) }}</span>
|
<span class="member-display-name">{{ getDisplayName(props.member) }}</span>
|
||||||
</div>
|
</div>
|
||||||
<ModalProfilePopup v-if="modalPopupVisible" :profile="props.member"
|
<ModalProfilePopup v-if="modalPopupVisible" :profile="props.member"
|
||||||
:whendone="hideModalPopup"/>
|
:onFinish="hideModalPopup"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<ModalBase :obscure="true" :onClose="props.whendone" :onCloseButton="props.whendone">
|
<ModalBase :obscure="true" :onClose="props.onFinish" :onCloseButton="props.onFinish">
|
||||||
<div id="profile-container">
|
<div id="profile-container">
|
||||||
<div id="profile-header">
|
<div id="profile-header">
|
||||||
<div id="header-mask"></div>
|
<div id="header-mask"></div>
|
||||||
|
@ -66,7 +66,7 @@ const { addFriend, fetchMe } = useApi();
|
||||||
|
|
||||||
const props = defineProps<ModalProps & {
|
const props = defineProps<ModalProps & {
|
||||||
profile: GuildMemberResponse,
|
profile: GuildMemberResponse,
|
||||||
whendone: any
|
onFinish: () => void
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const friendsSinceRequest = await getFriendsSince(props.profile)
|
const friendsSinceRequest = await getFriendsSince(props.profile)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue