Skip to content

Commit

Permalink
#7 the framework has no avaibility to make it link, but name is now a…
Browse files Browse the repository at this point in the history
… clickable link which has all the needed properties
  • Loading branch information
scammo committed Apr 3, 2024
1 parent 66dc0d8 commit 0975a25
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/src/views/orga/ProposalsTrack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,13 @@ const rowClass = (data) => {
table-style="min-width: 50rem" @rowSelect="onRowSelect">
<template #empty> Keine Bewerbungen mit diesem Filter gefunden. </template>
<Column v-tooltip="'ID wird vom System vergeben'" field="id" header="ID" sortable style="width: 8%"></Column>
<Column field="name" header="Name" sortable style="width: 60%"></Column>
<Column field="name" header="Name" sortable style="width: 60%">
<template #body="slotProps">
<router-link :to="`/proposal/${slotProps.data.id}`">
<span>{{ slotProps.data.name }}</span>
</router-link>
</template>
</Column>
<Column field="status" header="Status" sortable style="width: 8%"></Column>
<Column v-tooltip="'Anzahl abgegebene Stimmen'" field="vote_count" header="👥" sortable style="width: 8%">
</Column>
Expand Down

0 comments on commit 0975a25

Please sign in to comment.