@appscode/design-system 1.1.0-beta.15 → 1.1.0-beta.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { defineAsyncComponent, ref, watch, computed, nextTick } from "vue";
|
|
3
|
-
import type { User
|
|
3
|
+
import type { User } from "../../types/user";
|
|
4
4
|
|
|
5
|
-
interface FormatedOrgs extends
|
|
5
|
+
interface FormatedOrgs extends User {
|
|
6
6
|
isPersonalAccount?: boolean;
|
|
7
7
|
}
|
|
8
8
|
|
|
@@ -93,13 +93,13 @@ watch(dropDownStatus, (n) => {
|
|
|
93
93
|
<navbar-item :modifierClasses="'ac-profile-button'">
|
|
94
94
|
<template #navbar-item>
|
|
95
95
|
<div class="ac-user-profile mr-8">
|
|
96
|
-
<img :src="
|
|
96
|
+
<img :src="user.avatar_url" alt="User Photo" />
|
|
97
97
|
</div>
|
|
98
98
|
{{ user.full_name || user.username }}
|
|
99
99
|
<i class="fa fa-angle-down" aria-hidden="true"></i>
|
|
100
100
|
</template>
|
|
101
101
|
<!-- <button class="button ac-nav-button ac-profile-button">
|
|
102
|
-
|
|
102
|
+
|
|
103
103
|
</button> -->
|
|
104
104
|
|
|
105
105
|
<template #navbar-content>
|