expand excerpts

This commit is contained in:
David Taylor 2025-01-06 18:54:04 +00:00
parent 30e6f4a436
commit a638e112eb
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434
1 changed files with 7 additions and 0 deletions

View File

@ -26,6 +26,13 @@ function initialize(api, container) {
}
return columns;
});
api.registerValueTransformer("topic-list-item-expand-pinned", ({ value }) => {
if (container.lookup("service:router").currentRouteName === "docs.index") {
return true;
}
return value;
});
}
export default {