Skip to content

Commit

Permalink
fix(web): fix back arrow links and remove debug info (un#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
McPizza0 authored Feb 6, 2024
1 parent 44f3585 commit 416c0e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/web-app/components/un/ui-avatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
type AvatarSize = InstanceType<typeof NuxtUiAvatar>['$props']['size'];
type Props = {
color: UiColors;
color?: UiColors;
avatarId: string | null;
name?: string;
alt?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<div class="flex flex-row items-center gap-4">
<UnUiTooltip text="Back to Email Address list">
<UnUiIcon
name="ph-arrow-left"
name="i-ph-arrow-left"
size="32"
@click="navigateTo('./')" />
</UnUiTooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,6 @@
</template>
</NuxtUiAccordion>
</div>
{{ mail }}
{{ incomingStatus }}
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
const tableRows = ref<TableRow[]>([]);
watch(groupData, (newResults) => {
if (newResults?.group?.members) {
console.log(JSON.stringify(newResults.group.members, null, 2));
for (const member of newResults.group.members) {
tableRows.value.push({
publicId: member.publicId,
Expand Down Expand Up @@ -178,11 +177,11 @@
<div class="h-full w-full flex flex-col items-start gap-8 p-4">
<div class="w-full flex flex-row items-center justify-between">
<div class="flex flex-row items-center gap-4">
<UnUiTooltip text="Back to domains">
<UnUiTooltip text="Back to groups">
<UnUiIcon
name="i-ph-arrow-left"
size="32"
@click="navigateTo(`${orgSlug}/settings/org/users/groups`)" />
@click="navigateTo('./')" />
</UnUiTooltip>
<UnUiAvatar
:color="groupData?.group?.color || 'base'"
Expand Down

0 comments on commit 416c0e2

Please sign in to comment.