-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
Suggested councillor council name #1185
Suggested councillor council name #1185
Conversation
The test for Council Name is nested in the feature_flag_is_on test, so that the feature is visible in the test environment.
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.
Great, simple implementation that does the basics first. I think it could be worth improving the text to be more helpful and descriptive.
@hisayohorie would you like to do that or would you prefer we just merge this so you can move on to something else first?
@@ -1,3 +1,6 @@ | |||
%p |
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.
Should this be a header instead of a paragraph?
@@ -1,3 +1,6 @@ | |||
%p | |||
Council Name: #{@authority.full_name} |
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.
Since this line is so short it could go on the same line as the tag, i.e.:
%p Council Name: #{@authority.full_name}
to make it more readable and clear. still need some styling.
To separate the test exercise and test expectation.
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.
@hisayohorie and I left the h1 text with the default styling because that will be done in #1180. We also decided to leave adding an introductory paragraph until we add other helpful text in #1182.
This will display the name of council the suggested councillors belong.
Fixes #1181 .