Skip to content
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

minor ui fixes #2173

Merged
merged 2 commits into from
Oct 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
.Instructions {
color: #93a29b;
font-size: 16px;
width: 371px;
}

.Link {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ const contactManagement = (

test('Admin contact management form renders correctly', async () => {
render(contactManagement);
expect(
screen.getByText(
'You can move contacts to collections in bulk or update their contact information. Please create csv file that exactly matches the sample.'
)
).toBeInTheDocument();
const helpText = await screen.getByText(
'You can move contacts to collections in bulk or update their contact information. Please create csv file that exactly matches the sample. Here are the'
);
expect(helpText).toBeInTheDocument();
});

test('the page should have a disabled upload button by default', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ export const AdminContactManagement: React.SFC<AdminContactManagementProps> = ()
<div className={styles.Container}>
<div className={styles.Instructions}>
You can move contacts to collections in bulk or update their contact information. Please
create csv file that exactly matches the sample.
create csv file that exactly matches the sample. Here are the &nbsp;
<a
href={CONTACT_MANAGE_HELP_LINK}
target="_blank"
rel="noreferrer"
className={styles.Link}
>
View instructions
detailed instructions.
</a>
</div>
<div className={styles.UploadContainer}>
Expand Down