-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reorganise admin navigation and add requirements #2147
Conversation
caa0e1a
to
62c1aec
Compare
This is to ensure that any future addition of this component to govuk-frontend will not clash with our implementation.
This makes it easier to keep it updated.
This hopefully makes it easier to migrate to an official component in the future.
62c1aec
to
8bdfc36
Compare
The inspect output for hashes changed in Ruby 3.4 to use the 1.9 syntax where possible and to pad the hash rockets with spaces when not possible.
8bdfc36
to
01f3726
Compare
@@ -35,7 +35,7 @@ def search_query | |||
|
|||
def search_param(query) | |||
query.to_s | |||
.scan(/[-\w]{1,}/) | |||
.scan(/[-\w]{2,}/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this require at least two characters, not just one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it's one character for the -
and then one for a letter. Without this change the query is !:*
for Floor plans - existing
which is invalid and raises an error.
Description of change
Story Link
https://trello.com/c/Ohgw2fkH
Screenshots
Todo