Skip to content
Snippets Groups Projects
Commit 5fe5b38c authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Add router link to Status component

parent cfa85c1e
No related branches found
No related tags found
No related merge requests found
<template>
<div>
<router-link :to="{ name: 'StatusShow', params: { id: status.id }}">
<el-card v-if="!status.deleted" class="status-card">
<div slot="header">
<div class="status-header">
......@@ -15,7 +15,6 @@
<h3 class="status-account-name deactivated"> (deactivated)</h3>
</span>
</div>
</div>
<div class="status-actions">
<el-tag v-if="status.sensitive" type="warning" size="large">{{ $t('reports.sensitive') }}</el-tag>
......@@ -116,7 +115,7 @@
{{ parseTimestamp(status.created_at) }}
</a>
</el-card>
</div>
</router-link>
</template>
<script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment