diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt
index 459135cb0..9c2cce4c5 100644
--- a/docs/changelog/7.x.x.txt
+++ b/docs/changelog/7.x.x.txt
@@ -1,4 +1,5 @@
7.10.30
+ - fixed: Do not generate the Not Found page when JS or CSS is requested. In admin mode, this is bypassed so that admins can see which pages are really missing and can easily add them.
7.10.29
- fixed #12454: Email to Group ignores the From field
diff --git a/lib/WebGUI/Form/Color.pm b/lib/WebGUI/Form/Color.pm
index 84df9fc3d..a64e75186 100644
--- a/lib/WebGUI/Form/Color.pm
+++ b/lib/WebGUI/Form/Color.pm
@@ -131,6 +131,7 @@ sub toHtml {
my $id = $self->get("id");
my $value = $self->getOriginalValue;
my $name = $self->get("name");
+ $self->headTags;
return qq{
};