Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/Envelope.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
class="list-item-style envelope"
:class="{ seen: data.flags.seen, draft, selected: selected }"
:to="link"
:exact="true"
:data-envelope-id="data.databaseId"
:name="addresses"
:details="formatted()"
Expand Down
12 changes: 1 addition & 11 deletions src/components/EnvelopeSkeleton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
:is="to ? 'router-link' : 'NcVNodes'"
v-slot="{ href: routerLinkHref, navigate, isActive }"
:custom="to ? true : null"
:to="to"
:exact="to ? exact : null">
:to="to">
Comment thread
GVodyanov marked this conversation as resolved.
<li
class="list-item__wrapper"
:class="{ 'list-item__wrapper--active': isActive || active }">
Expand Down Expand Up @@ -158,15 +157,6 @@ export default {
required: true,
},

/**
* Pass in `true` if you want the matching behavior to
* be non-inclusive: https://router.vuejs.org/api/#exact
*/
exact: {
type: Boolean,
default: false,
},

/**
* The route for the router link.
*/
Expand Down
Loading