Fixes #1100
parent
3b1378717c
commit
2ef43bd56d
|
@ -130,10 +130,14 @@ export async function pageComplete(completeEvent: CompleteEvent) {
|
|||
// A [[wikilink]]
|
||||
if (pageMeta.displayName) {
|
||||
const decoratedName = namePrefix + pageMeta.displayName;
|
||||
let boost = new Date(pageMeta.lastModified).getTime();
|
||||
if (pageMeta._isAspiring) {
|
||||
boost = -Infinity;
|
||||
}
|
||||
completions.push({
|
||||
label: pageMeta.displayName,
|
||||
displayLabel: decoratedName,
|
||||
boost: new Date(pageMeta.lastModified).getTime(),
|
||||
boost,
|
||||
apply: pageMeta.tag === "template"
|
||||
? pageMeta.name
|
||||
: `${pageMeta.name}|${pageMeta.displayName}`,
|
||||
|
|
|
@ -41,7 +41,7 @@ export function PageNavigator({
|
|||
orderId = -pageMeta.lastOpened;
|
||||
}
|
||||
// Or it's the currently open page
|
||||
if (currentPage && currentPage === pageMeta.name) {
|
||||
if (currentPage && currentPage === pageMeta.name || pageMeta._isAspiring) {
|
||||
// ... then we put it all the way to the end
|
||||
orderId = Infinity;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue