Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion webviews/components/ScanResultTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,20 @@
title: "Label",
field: "label",
formatter: "link",
minWidth: 150,
cellClick: function (e, cell) {
tsvscode.postMessage({
type: "goToFile",
value: cell.getRow().getData().flow,
});
},
},
{ title: "Flow Type", field: "type", formatter: "plaintext" },
{
title: "Flow Type",
field: "type",
formatter: "plaintext",
minWidth: 120
},
{
title: "% Test Coverage",
field: "coverage",
Expand Down
6 changes: 5 additions & 1 deletion webviews/components/ViolationTableFull.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
title: "Name",
field: "name",
formatter: "textarea",
minWidth: 150,
},
{
title: "Type",
Expand All @@ -60,6 +61,7 @@
title: "Flow name",
field: "flowName",
formatter: "textarea",
minWidth: 150,
},
{
title: "DataType",
Expand All @@ -81,11 +83,13 @@
title: "Connects to",
field: "connectsTo",
formatter: "textarea",
minWidth: 150,
},
{
title: "Expression",
field: "expression",
formatter: "textarea",
minWidth: 150,
},
],
});
Expand All @@ -99,4 +103,4 @@
}
</script>

<div bind:this={tableComponent} />
<div bind:this={tableComponent} />