Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Share: Fix going from child note to parent share root #963

Merged
merged 1 commit into from
Jan 17, 2025

Conversation

gigamonster256
Copy link
Contributor

navigating from a sub note to the parent note when the parent note is the root note is broken due to the missing relative path specifier

href for the parent node if it is the root node is "" instead of "./" see the differing behavior of referencing child nodes

for (const childNote of note.getVisibleChildNotes()) {
const isExternalLink = childNote.hasLabel('shareExternalLink');
const linkHref = isExternalLink ? childNote.getLabelValue('shareExternalLink') : `./${childNote.shareId}`;
const target = isExternalLink ? `target="_blank" rel="noopener noreferrer"` : '';

vs the parent node
<% if (note.parents[0].noteId !== '_share' && note.parents.length !== 0) { %>
<nav id="parentLink">
<%= t("share_page.parent") %> <a href="<%= note.parents[0].shareId %>"

@eliandoran eliandoran merged commit 59d8def into TriliumNext:develop Jan 17, 2025
@eliandoran eliandoran changed the title Fix parent share link Share: Fix going from child note to parent share root Jan 17, 2025
@eliandoran
Copy link
Contributor

@gigamonster256 , thank you for your contribution!

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants