Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
krischarbonneau committed Sep 7, 2021
1 parent 52804fc commit 6bd3ad2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Experiment.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ export const Experiment = (props) => {
>
{props.title}
{props.href.substring(0, 8) === "https://" ? (
<img src="/external-link.svg" className="px-1 py-2" />
<img
alt="external link"
src="/external-link.svg"
className="px-1 py-2"
/>
) : undefined}
</a>
<span
Expand Down
1 change: 1 addition & 0 deletions src/components/SelectField.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Primary.args = {
dataTestId: "select-field-1",
required: true,
requiredText: "(required)",
optionalText: "optional",
options: [
{
id: "option1",
Expand Down

0 comments on commit 6bd3ad2

Please sign in to comment.