diff --git a/Dockerfile b/Dockerfile index 7f05311a171..947b97aa9a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -278,4 +278,3 @@ RUN mv specifyweb.wsgi specifyweb_wsgi.py CMD ["ve/bin/gunicorn", "-w", "3", "-b", "0.0.0.0:8000", "-t", "300", "specifyweb_wsgi"] - diff --git a/docker-compose.yml b/docker-compose.yml index bc94997ef05..35ab232b831 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -115,4 +115,4 @@ volumes: attachments: # the asset-servers attachment files database: # the data directory for mariadb static-files: # provides Specify 7 static files to the web server - webpack-output: + webpack-output: \ No newline at end of file diff --git a/manage.py b/manage.py index a7615029a5f..4b6b9c80f54 100644 --- a/manage.py +++ b/manage.py @@ -22,4 +22,4 @@ "forget to activate a virtual environment?" ) raise - execute_from_command_line(sys.argv) + execute_from_command_line(sys.argv) \ No newline at end of file diff --git a/specifyweb/frontend/js_src/lib/components/Atoms/Form.tsx b/specifyweb/frontend/js_src/lib/components/Atoms/Form.tsx index 1bd5edbfb99..3d0277166d5 100644 --- a/specifyweb/frontend/js_src/lib/components/Atoms/Form.tsx +++ b/specifyweb/frontend/js_src/lib/components/Atoms/Form.tsx @@ -353,9 +353,9 @@ export const Select = wrap< * the background in dark-mode. This is a fix: */ if (props.required !== true && props.multiple === true) { - selected.map((option) => option.classList.add('dark:bg-neutral-100')); + selected.map((option) => option.classList.add('dark:bg-neutral-500')); // highlights selected object less bright unselected.map((option) => - option.classList.remove('dark:bg-neutral-100') + option.classList.remove('dark:bg-neutral-500') // prevents a previously selected option from remaining highlighted ); } const value = (event.target as HTMLSelectElement).value; diff --git a/specifyweb/frontend/js_src/lib/components/Atoms/__tests__/__snapshots__/Form.test.tsx.snap b/specifyweb/frontend/js_src/lib/components/Atoms/__tests__/__snapshots__/Form.test.tsx.snap index 85bd1a4cb51..f3058a02cbf 100644 --- a/specifyweb/frontend/js_src/lib/components/Atoms/__tests__/__snapshots__/Form.test.tsx.snap +++ b/specifyweb/frontend/js_src/lib/components/Atoms/__tests__/__snapshots__/Form.test.tsx.snap @@ -50,11 +50,11 @@ exports[`