Skip to content
Snippets Groups Projects
Commit 7acfe9fe authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Merge branch 'fix-landing-page' into 'develop'

fix: passing missing parameter to landing page's shortcuts

See merge request !193
parents 75ef2ecf 95449806
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ let attach_card = function(container, card) {
container.append(card);
}
let attach_pinned_card = function(container, card) {
let card_el = create_pinned_card(card.icon, card.title, card.caption);
let card_el = create_pinned_card(card.icon, card.title, card.caption, card.link);
let first_child = container.children[1];
// might as well remove all children and rebuild the contents using window.pinned_cards
container.insertBefore(card_el, first_child);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment