File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
scanpipe/templates/scanpipe/modals Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ v34.7.2 (unreleased)
38
38
- Add notes field on the DiscoveredPackage model.
39
39
https://github.com/nexB/scancode.io/issues/1342
40
40
41
+ - Fix an issue with conflicting groups checkbox id in the Add pipeline modal.
42
+ https://github.com/nexB/scancode.io/issues/1353
43
+
41
44
v34.7.1 (2024-07-15)
42
45
--------------------
43
46
Original file line number Diff line number Diff line change @@ -125,6 +125,10 @@ test:
125
125
@echo " -> Run the test suite"
126
126
${MANAGE} test --noinput
127
127
128
+ fasttest :
129
+ @echo " -> Run the test suite without the PipelinesIntegrationTest"
130
+ ${MANAGE} test --noinput --exclude-tag slow
131
+
128
132
worker :
129
133
${MANAGE} rqworker --worker-class scancodeio.worker.ScanCodeIOWorker --queue-class scancodeio.worker.ScanCodeIOQueue --verbosity 2
130
134
@@ -152,4 +156,4 @@ offline-package: docker-images
152
156
@mkdir -p dist/
153
157
@tar -cf dist/scancodeio-offline-package-` git describe --tags` .tar build/
154
158
155
- .PHONY : virtualenv conf dev envfile install doc8 check valid check-deploy clean migrate upgrade postgresdb sqlitedb backupdb run test docs bump docker-images offline-package
159
+ .PHONY : virtualenv conf dev envfile install doc8 check valid check-deploy clean migrate upgrade postgresdb sqlitedb backupdb run test fasttest docs bump docker-images offline-package
Original file line number Diff line number Diff line change 33
33
{% if pipeline_info.available_groups %}
34
34
< div class ="ml-2 mt-1 ">
35
35
{% for group in pipeline_info.available_groups %}
36
- < label class ="checkbox ml-1 " for ="id_{{ group }} ">
36
+ < label class ="checkbox ml-1 " for ="id_{{ pipeline_name }}_{{ group }} ">
37
37
< span class ="tag is-warning has-text-weight-bold ">
38
- < input type ="checkbox " name ="selected_groups " value ="{{ group }} " id ="id_{{ group }} " class ="mr-1 ">
38
+ < input type ="checkbox " name ="selected_groups " value ="{{ group }} " id ="id_{{ pipeline_name }}_{{ group }} " class ="mr-1 ">
39
39
{{ group }}
40
40
</ span >
41
41
</ label >
You can’t perform that action at this time.
0 commit comments