diff --git a/webviews/components/ScanResultTable.svelte b/webviews/components/ScanResultTable.svelte index 578dc30..5fd924b 100644 --- a/webviews/components/ScanResultTable.svelte +++ b/webviews/components/ScanResultTable.svelte @@ -34,6 +34,7 @@ title: "Label", field: "label", formatter: "link", + minWidth: 150, cellClick: function (e, cell) { tsvscode.postMessage({ type: "goToFile", @@ -41,7 +42,12 @@ }); }, }, - { title: "Flow Type", field: "type", formatter: "plaintext" }, + { + title: "Flow Type", + field: "type", + formatter: "plaintext", + minWidth: 120 + }, { title: "% Test Coverage", field: "coverage", diff --git a/webviews/components/ViolationTableFull.svelte b/webviews/components/ViolationTableFull.svelte index d6d904e..85672fb 100644 --- a/webviews/components/ViolationTableFull.svelte +++ b/webviews/components/ViolationTableFull.svelte @@ -49,6 +49,7 @@ title: "Name", field: "name", formatter: "textarea", + minWidth: 150, }, { title: "Type", @@ -60,6 +61,7 @@ title: "Flow name", field: "flowName", formatter: "textarea", + minWidth: 150, }, { title: "DataType", @@ -81,11 +83,13 @@ title: "Connects to", field: "connectsTo", formatter: "textarea", + minWidth: 150, }, { title: "Expression", field: "expression", formatter: "textarea", + minWidth: 150, }, ], }); @@ -99,4 +103,4 @@ } -
\ No newline at end of file +