@appscode/design-system 2.2.29 → 2.2.31
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
|
@@ -116,7 +116,7 @@ function handleIsActiveChange(isActive: string) {
|
|
|
116
116
|
<navbar-item-content class="navbar-dropdown-wrapper">
|
|
117
117
|
<div v-if="user.username" class="user-profile-wrapper">
|
|
118
118
|
<a
|
|
119
|
-
:href="`${serverDomain}/${user.username}`"
|
|
119
|
+
:href="`${serverDomain}/id/${user.username}`"
|
|
120
120
|
:title="user.username.toUpperCase()"
|
|
121
121
|
data-testid="user-profile-link"
|
|
122
122
|
class="line-break-anywhere is-ellipsis-1 has-text-weight-medium"
|
|
@@ -139,19 +139,19 @@ function handleIsActiveChange(isActive: string) {
|
|
|
139
139
|
<a
|
|
140
140
|
v-if="user.isPersonalAccount"
|
|
141
141
|
data-testid="user-settings-link"
|
|
142
|
-
:href="`${serverDomain}/user/settings/`"
|
|
142
|
+
:href="`${serverDomain}/id/user/settings/`"
|
|
143
143
|
>
|
|
144
144
|
<span class="icon">
|
|
145
145
|
<HeroiconsCog6Tooth />
|
|
146
146
|
</span>
|
|
147
147
|
<span>Settings</span>
|
|
148
148
|
</a>
|
|
149
|
-
<a v-else data-testid="user-settings-link" :href="`${serverDomain}/${user.username}/settings`">
|
|
149
|
+
<a v-else data-testid="user-settings-link" :href="`${serverDomain}/id/${user.username}/settings`">
|
|
150
150
|
<span class="icon"> <HeroiconsCog6Tooth /> </span><span>Settings</span>
|
|
151
151
|
</a>
|
|
152
152
|
</li>
|
|
153
153
|
<li key="settings-platform" v-else>
|
|
154
|
-
<NuxtLink v-if="user.isPersonalAccount" data-testid="user-settings-link" :to="`/user/settings/`">
|
|
154
|
+
<NuxtLink v-if="user.isPersonalAccount" data-testid="user-settings-link" :to="`/id/user/settings/`">
|
|
155
155
|
<span class="icon">
|
|
156
156
|
<HeroiconsCog6Tooth />
|
|
157
157
|
</span>
|