Browse Source

fix verbiage when looking at new offers

master
Trent Larson 2 weeks ago
parent
commit
15e00f9be0
  1. 8
      src/views/NewActivityView.vue

8
src/views/NewActivityView.vue

@ -61,7 +61,7 @@
>
<fa icon="file-lines" class="pl-2 text-blue-500 cursor-pointer" />
</router-link>
<!-- New line that appears on hover -->
<!-- New line that appears on hover or when the offer is clicked -->
<div
@click="markOffersAsReadStartingWith(offer.jwtId)"
class="absolute left-0 w-full text-left text-gray-500 text-sm hidden group-hover:flex cursor-pointer items-center"
@ -271,7 +271,7 @@ export default class NewActivityView extends Vue {
group: "alert",
type: "info",
title: "Marked as Unread",
text: "All offers above that one are marked as unread.",
text: "All offers above that line are marked as unread.",
},
3000,
);
@ -292,7 +292,7 @@ export default class NewActivityView extends Vue {
group: "alert",
type: "info",
title: "Marked as Read",
text: "The offers are marked as viewed. Click in the list to keep them as new.",
text: "The offers are now marked as viewed. Click in the list to keep them as new.",
},
5000,
);
@ -321,7 +321,7 @@ export default class NewActivityView extends Vue {
group: "alert",
type: "info",
title: "Marked as Unread",
text: "All offers above that one are marked as unread.",
text: "All offers above that line are marked as unread.",
},
3000,
);

Loading…
Cancel
Save