John M. Horan
John M. Horan
During a recent project, I noticed that after properly activating the column filters, from time to time there were values displayed in a filter that, when selected, resulted in a...
I discovered in recent days that I am unable to build the current version of SCWB on my Windows 10 laptop using Git Bash. This process still works when I...
Working on Windows 10 with the latest development branch, using a built .exe. Often I'm encountering a display of the Path column that is wider than any displayed Path values....
Working on Windows 10 with ScanCode Workbench 3.1.1, I see that some (but not all) filters in the Table View display seem to apply the filter by using substrings rather...
The search feature in Table View (upper right-hand corner) currently searches all fields, whether or not the user has selected the relevant field/column for display. As a result, at times...
It would be useful to be able to view the files contained in a particular folder while excluding from the view all of that folder's sub-folders and their respective contents.
From @tdruez 's comments in https://github.com/nexB/vulnerablecode/issues/875 . Use f-strings for better readability: ``` search_string = request.GET["name"] "package_search": f"The VCIO DB does not contain a record of the package you entered:...
From @tdruez 's comments in https://github.com/nexB/vulnerablecode/issues/875 . Excerpts:  This should be moved to the models.py as a method on the Package QuerySet. [me] Re the rationale -- I modelled...
From @tdruez 's comments in https://github.com/nexB/vulnerablecode/issues/875 . `.all()` is not needed if you call `.filter()` after.