Skip to content

Commit

Permalink
fix(indiekit): show plugin information on status cards
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Dec 26, 2024
1 parent 742898d commit be413d8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions packages/indiekit/views/status.njk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
},
headingLevel: 3,
title: target.name,
description: target.info.uid,
description: {
text: target.info.uid
},
url: "/plugins/" + target.id
}) }}
{% endfor %}
Expand Down Expand Up @@ -119,7 +121,9 @@
},
headingLevel: 3,
title: publication.store.name,
description: publication.store.info.uid,
description: {
text: publication.store.info.uid
},
url: "/plugins/" + publication.store.id
})
}
Expand All @@ -136,7 +140,9 @@
},
headingLevel: 3,
title: publication.mediaStore.name,
description: publication.mediaStore.info.uid,
description: {
text: publication.mediaStore.info.uid
},
url: "/plugins/" + publication.mediaStore.id
})
}
Expand Down

0 comments on commit be413d8

Please sign in to comment.