Skip to content

Commit 6674d5e

Browse files
committed
ui: display slimmed merge_diff-proofs-only.json
1 parent c54f4db commit 6674d5e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ui/app/components/Kani.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ useHead({ title: "Verify Rust Std - Kani" });
1717
<div>len = {{ vec.length }}</div>
1818

1919
<DataTable :value="vec" paginator :rows="5" :rowsPerPageOptions="[5, 10, 20, 50]" sortMode="multiple" removableSort
20-
v-model:multi-sort-meta="multiSort" tableStyle="min-width: 50rem">
20+
v-model:multi-sort-meta="multiSort" stripedRows tableStyle="min-width: 50rem">
21+
<!-- :virtual-scroller-options="{ itemSize: 5, lazy: true, }"> It's slow to render the table, so partial render. -->
2122
<template #header>
2223
<div class="flex flex-wrap items-center justify-between gap-2">
2324
<span class="text-xl font-bold">Products</span>

ui/app/layouts/default.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
const CLASS_DARK = "my-app-dark";
44
function toggleTheme() {
55
const isDark = document.documentElement.classList.toggle(CLASS_DARK);
6-
console.log("dark", isDark);
76
localStorage.setItem("theme", isDark ? "dark" : "light");
87
}
98

ui/app/shared/utils/merged_list.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { DataTableSortMeta } from "primevue";
22

3-
export const URL_MERGE_DIFF = "https://raw.githubusercontent.com/os-checker/verify-rust-std_data/refs/heads/main/merge_diff.json";
3+
export const URL_MERGE_DIFF = "https://raw.githubusercontent.com/os-checker/verify-rust-std_data/refs/heads/main/merge_diff-proofs-only.json";
44

55
export type VecMergeHashKaniList = MergeHashKaniList[];
66

@@ -48,6 +48,6 @@ export const MergeKaniColumns: MergeKaniColumn[] = [
4848
];
4949

5050
export const multiSort: DataTableSortMeta[] = [
51-
{ field: "proof_kind", order: 1 },
52-
{ field: "func", order: 1 },
51+
// { field: "proof_kind", order: 1 },
52+
// { field: "func", order: 1 },
5353
];

0 commit comments

Comments
 (0)