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

fix: passing missing parameter to landing page's shortcuts

parent 75ef2ecf
No related branches found
No related tags found
2 merge requests!197[release] Regular merge of develop,!193fix: passing missing parameter to landing page's shortcuts
Pipeline #35286 passed
......@@ -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