-
Notifications
You must be signed in to change notification settings - Fork 0
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
Usability improvements #194
Conversation
d5daf52
to
3b2ab1b
Compare
3b2ab1b
to
5825a74
Compare
The hyperlink on the confirmation ID doesn't take you anywhere. It should be going to the submission itself. |
Can we check the spacing for "help us learn more about your housing project" section? There's too much space/ gap right now. |
5825a74
to
29c751d
Compare
Confirmation ID hyperlink is fixed now. I believe as per the a/c it should say active submissions for both. |
29c751d
to
4493565
Compare
spacing adjusted! |
<router-link :to="{ name: RouteName.HOUSING_SUBMISSIONS }">My drafts and previous entries.</router-link> | ||
Please check your email for the confirmation email and keep the confirmation ID for future reference | ||
</div> | ||
<div class="mt-4"><router-link :to="{ name: RouteName.HOUSING }">Back to Housing</router-link></div> | ||
</div> | ||
</template> | ||
<style scoped lang="scss"> |
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.
Style: There should be a newline between template and style.
<Divider type="solid" /> | ||
</template> | ||
<template #content> | ||
<div class="col-12 mt-0 pt-0 mb-0 pb-0"> |
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.
Precision: IIRC, you might be able to simply this to the following classes with the same results:
<div class="col-12 my-0 py-0">
</div> | ||
</div> | ||
</div> | ||
<!-- eslint-disable max-len --> |
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.
Style: We should not be sprinkling in directives like this. This will disable checking for max-len for the rest of the file. This should only be done on a line-by-line basis.
</div> | ||
</div> | ||
</template> | ||
<style scoped lang="scss"> |
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.
Style: There should be a newline between template and style.
<div class="mt-4"><router-link :to="{ name: RouteName.HOUSING }">Back to Housing</router-link></div> | ||
</div> | ||
</template> | ||
<style scoped lang="scss"> |
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.
Style: There should be a newline between template and style.
2a12c56
to
b1dae7b
Compare
…page changes-new routes & views
b1dae7b
to
8e39184
Compare
Description
PADS-338
New routes & views for submission & enquiry confirmation
SubmissionIntakeConfirmation component deleted
Enquiry intake form updated
Submission intake form updated
Application & Housing constants updated
Types of changes
New feature (non-breaking change which adds functionality)
Checklist
Further comments