Browse Source

feat: move the user profile up on page, reword "star" to "favorite"

pull/193/head
Trent Larson 2 weeks ago
parent
commit
d3f54d6bff
  1. 4
      src/views/AccountViewView.vue
  2. 2
      src/views/HomeView.vue
  3. 2
      src/views/NewActivityView.vue

4
src/views/AccountViewView.vue

@ -150,8 +150,6 @@
</section>
<PushNotificationPermission ref="pushNotificationPermission" />
<LocationSearchSection :search-box="searchBox" />
<!-- User Profile -->
<section
v-if="isRegistered"
@ -244,6 +242,8 @@
<div v-else>Saving...</div>
</section>
<LocationSearchSection :search-box="searchBox" />
<UsageLimitsSection
v-if="activeDid"
:loading-limits="loadingLimits"

2
src/views/HomeView.vue

@ -213,7 +213,7 @@ Raymer * @version 1.0.0 */
}}{{ newStarredProjectChangesHitLimit ? "+" : "" }}
</span>
<p class="text-center">
starred project{{ numNewStarredProjectChanges === 1 ? "" : "s" }}
favorite project{{ numNewStarredProjectChanges === 1 ? "" : "s" }}
with changes
</p>
</div>

2
src/views/NewActivityView.vue

@ -156,7 +156,7 @@
}}{{ newStarredProjectChangesHitLimit ? "+" : "" }}</span
>
<span class="text-lg font-medium ml-4"
>Starred Project{{
>Favorite Project{{
newStarredProjectChanges.length === 1 ? "" : "s"
}}
With Changes</span

Loading…
Cancel
Save