diff --git a/.env.example b/.env.example
index 1d88c4e0..8369ce36 100644
--- a/.env.example
+++ b/.env.example
@@ -40,7 +40,7 @@ APP_LTI_REDIRECT_PATH="/lti/authorize/check"
APP_LTI_NAME="UDOIT 3"
ADMIN_LTI_NAME="UDOIT 3 Admin"
USE_DEVELOPMENT_AUTH="no"
-VERSION_NUMBER="3.3.1"
+VERSION_NUMBER="3.5.0"
###> symfony/messenger ###
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ddbe8f01..1960bb3f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@ Please update this file as you open PRs and make changes to the codebase. Thank
### General
+- Changed highlight color of 'alt text' for the UFIXIT form to meet all accessibility standards for color contrast (Thank you, @dmols)
- Added TableNotEmpty rule and UFIXIT issue form to track tables with no content (Thank you, [@AlanFCMV](https://github.com/alanfcmv))
- Increased maximum file upload size allowed, from 1mb to 10mb (Thank you, [@taheralfayad](https://github.com/taheralfayad))
- Changed the description of 'ParagraphNotUsedAsHeader' rule to be less ambiguous since UDOIT has flagged this issue incorrectly before (Thank you, [@taheralfayad](https://github.com/taheralfayad))
diff --git a/Makefile b/Makefile
index a9f30eaa..3e2961d8 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ endif
# spin up the containers
start:
- docker compose -f docker-compose.nginx.yml up -d
+ docker compose -f docker-compose.nginx.yml up
# set up the database
migrate:
diff --git a/assets/js/Components/Preview.js b/assets/js/Components/Preview.js
index 857b948c..c0a01f21 100644
--- a/assets/js/Components/Preview.js
+++ b/assets/js/Components/Preview.js
@@ -78,13 +78,13 @@ class Preview extends React.Component {
}
highlightHtml(issueHtml, previewHtml) {
- const highlighted = `${issueHtml}`
+ const highlighted = `${issueHtml}`
try {
previewHtml = previewHtml.replace(issueHtml, highlighted)
} catch (error) {
console.log(error)
}
-
+
return previewHtml
}