Skip to content

Commit

Permalink
fix: add missing table border on organisation page
Browse files Browse the repository at this point in the history
  • Loading branch information
tillywoodfield committed Jan 8, 2025
1 parent cc2ae37 commit 885cc6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/organisation/DocumentList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import { getSortDirection, getSortValue, sortDocuments, sortOptions } from "../../utils";
import DocumentListItem from "./DocumentListItem.vue";
const headerClassNames = "hidden border-0 border-y border-solid border-gray-300 p-2.5 font-bold sm:block";
const headerClassNames = "hidden border-0 border-b border-solid border-gray-300 p-2.5 font-bold sm:block";
const props = defineProps({
documents: { type: Object, default: () => {} },
sortvariable: { type: String, default: "" },
});
</script>

<template>
<div class="grid grid-cols-1">
<div class="grid grid-cols-1 border border-solid border-gray-300">
<div class="sticky top-0 grid grid-cols-5 gap-0 bg-white">
<div class="first:pl-3.5" :class="headerClassNames">File Name</div>
<div :class="headerClassNames">Identified in Registry</div>
Expand Down

0 comments on commit 885cc6b

Please sign in to comment.