Skip to content

Commit

Permalink
fix: click on feed name sends to the feed page
Browse files Browse the repository at this point in the history
Clicking on the feed name from the setting page now sends to the feed page (and not the setting page)
  • Loading branch information
kvnco authored and Sbgodin committed Apr 6, 2021
1 parent c77caf6 commit 43872bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/marigolds/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h1 class="folder left" ><span>{$value->getName()}</span> ({function="count($fee
{$feedName=Functions::truncate($value2->getName(),40)}
<li class="feedListItem{if="$value->getLastSyncInError()==1"} errorSync{/if}">
<span class="feedTitle js-feedTitle"{if="$value->getLastSyncInError()==1"} title="{function="_t('SYNCHRONISATION_ERROR')"}"{/if}>
<a{if="$value->getLastSyncInError()==1"} class="inError"{/if} href="?action=selectedFeed&feed={$value2->getId();}" data-feed-id="{$value2->getId()}">{$feedName}</a><a href="{$value2->getUrl()}" class="underlink">{$value2->getUrl()}</a>
<a{if="$value->getLastSyncInError()==1"} class="inError"{/if} href="./?action=selectedFeed&feed={$value2->getId();}" data-feed-id="{$value2->getId()}">{$feedName}</a><a href="{$value2->getUrl()}" class="underlink">{$value2->getUrl()}</a>
</span>
<div class="feedAction">
<select class="feedFolder" onchange="changeFeedFolder(this,{$value2->getId()});">
Expand Down

0 comments on commit 43872bd

Please sign in to comment.