bug fix in history nav
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<article class="result item">
|
<article class="result item">
|
||||||
<h1>
|
<h1>
|
||||||
<a
|
<a
|
||||||
:href="'/edition/'+item.textId+'/'+item.uuid"
|
:href="'/edition/'+item.id+'/'+item.textid"
|
||||||
@click.prevent="onclick"
|
@click.prevent="onclick"
|
||||||
@keyup.enter="onclick"
|
@keyup.enter="onclick"
|
||||||
v-html="item.title"
|
v-html="item.title"
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
</h1>
|
</h1>
|
||||||
<h2>
|
<h2>
|
||||||
<a
|
<a
|
||||||
:href="'/edition/'+item.textId+'/'+item.uuid"
|
:href="'/edition/'+item.id+'/'+item.textid"
|
||||||
@click.prevent="onclick"
|
@click.prevent="onclick"
|
||||||
@keyup.enter="onclick"
|
@keyup.enter="onclick"
|
||||||
v-html="item.editionTitle"
|
v-html="item.editionTitle"
|
||||||
|
|||||||
@@ -43,8 +43,8 @@ export default {
|
|||||||
router.push({
|
router.push({
|
||||||
name: `editiontext`,
|
name: `editiontext`,
|
||||||
params: {
|
params: {
|
||||||
id: item.textId,
|
id: item.id,
|
||||||
textid: item.uuid
|
textid: item.textid
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user