Skip to content

Commit

Permalink
update audit type wording in audit list
Browse files Browse the repository at this point in the history
  • Loading branch information
bellangerq committed Jan 18, 2024
1 parent 2cdc54c commit 3846ac1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import { AuditStatus, AuditType } from "../../../types";
import { AccountAudit } from "../../../types/account";
import {
formatDate,
formatAuditType,
captureWithPayloads,
slugify,
formatBytes
formatBytes,
getCriteriaCount
} from "../../../utils";
import Dropdown from "../../ui/Dropdown.vue";
import CopyIcon from "../../icons/CopyIcon.vue";
Expand Down Expand Up @@ -148,7 +148,7 @@ const csvExportFilename = computed(() => {
<!-- Type -->
<p class="fr-mb-0 audit-type">
<span class="sr-only">Type </span>
{{ formatAuditType(audit.auditType) }}
{{ getCriteriaCount(audit.auditType) }} critères
</p>

<!-- Compliance level -->
Expand Down Expand Up @@ -311,7 +311,7 @@ const csvExportFilename = computed(() => {
<style scoped>
.grid {
display: grid;
grid-template-columns: 2fr 0.75fr 0.75fr 1.25fr 1.25fr 1.5fr 1fr;
grid-template-columns: 2fr 0.75fr 0.75fr 0.75fr 1.25fr 1.5fr 1fr;
grid-gap: 1rem;
align-items: center;
border: 1px solid var(--border-default-grey);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ defineProps<{
.headers {
display: grid;
grid-template-columns: 2fr 0.75fr 0.75fr 1.25fr 1.25fr 1.5fr 1fr;
grid-template-columns: 2fr 0.75fr 0.75fr 0.75fr 1.25fr 1.5fr 1fr;
grid-gap: 1rem;
}
Expand Down

0 comments on commit 3846ac1

Please sign in to comment.