Skip to content

Commit

Permalink
Remove useless library field from the frameworks detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed Apr 8, 2024
1 parent 899317d commit 2b264fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="flex flex-col space-y-4 whitespace-pre-line">
<div class="card px-6 py-4 bg-white flex flex-row justify-between shadow-lg">
<div class="flex flex-col space-y-2">
{#each Object.entries(data.framework).filter(([key, _]) => key !== 'id' && key !== 'created_at') as [key, value]}
{#each Object.entries(data.framework).filter(([key, _]) => key !== 'id' && key !== 'created_at' && key !== 'library') as [key, value]}
<div class="flex flex-col">
<div class="text-sm font-medium text-gray-800 capitalize-first">
{#if key === 'urn'}
Expand Down

0 comments on commit 2b264fb

Please sign in to comment.