Skip to content

Commit a85365d

Browse files
authored
Update EventDetails.vue
Adding link opens in new tab by default
1 parent 0d32fc7 commit a85365d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frontend/src/components/EventDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import EditCarButton from './EditCarButton.vue';
1212
<div>
1313
<h3 class="card-title">{{ event?.name }}</h3>
1414
<h5 class="card-text">
15-
<a v-bind:href="'https://maps.google.com/?q=' + event?.location"
15+
<a target="_blank" v-bind:href="'https://maps.google.com/?q=' + event?.location"
1616
><IconPin /> {{ event?.location }}</a
1717
>
1818
</h5>

0 commit comments

Comments
 (0)