Skip to content

Commit

Permalink
WIP(profile): comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousMagpie committed Sep 6, 2023
1 parent 7b1de37 commit af6575e
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions website/client/src/components/userMenu/profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
</span>
</template>

<!-- send gems -->
<!-- SEND GEMS -->
<b-dropdown-item
class="selectListItem"
@click="openSendGemsModal()"
Expand All @@ -147,7 +147,7 @@
</span>
</b-dropdown-item>

<!-- report player -->
<!-- REPORT PLAYER -->
<b-dropdown-item
class="selectListItem"
@click="reportPlayer()"
Expand All @@ -164,7 +164,7 @@
</span>
</b-dropdown-item>

<!-- report player -->
<!-- BLOCK PLAYER -->
<b-dropdown-item
class="selectListItem block-ban"
@click="blockUser()"
Expand All @@ -180,11 +180,11 @@
</span>
</span>
</b-dropdown-item>
<!-- Rest is visible only if user is Admin -->
<!-- REST OF DROPDOWN ONLY VISIBLE IF ADMIN -->
<div
v-if="hasPermission(userLoggedIn, 'moderator')"
>
<!-- Admin Tools header -->
<!-- ADMIN TOOLS HEADER -->
<b-dropdown-item
class="admin-tools"
>
Expand All @@ -193,10 +193,10 @@
</span>
</b-dropdown-item>

<!-- Admin Panel -->
<!-- ADMIN PANEL -->
<b-dropdown-item
class="selectListItem"
@click="openAdminPanel()"
@click="adminOpenAdminPanel()"
>
<span class="with-icon">
<span
Expand All @@ -210,9 +210,10 @@
</span>
</b-dropdown-item>

<!-- Ban user -->
<!-- BAN USER -->
<b-dropdown-item
class="selectListItem block-ban"
@click="adminBlockUser()"
>
<span class="with-icon">
<span
Expand All @@ -226,7 +227,7 @@
</span>
</b-dropdown-item>

<!-- shadowmute player with toggle -->
<!-- SHADOW MUTE PLAYER WITH TOGGLE -->
<b-dropdown-item
class="selectListItem"
>
Expand All @@ -248,7 +249,7 @@
</span>
</b-dropdown-item>

<!-- mute player with toggle -->
<!-- MUTE PLAYER WITH TOGGLE -->
<b-dropdown-item
class="selectListItem"
>
Expand Down Expand Up @@ -792,6 +793,7 @@
line-height: 1.71;
margin-left: 24px;
margin-right: 8px;
margin-top: 0px;
width: 148px;
}
Expand Down

0 comments on commit af6575e

Please sign in to comment.