From 5eb1d9cd22695830a4830149faaea7ef29a55f40 Mon Sep 17 00:00:00 2001 From: Eduard Heimbuch Date: Mon, 29 Nov 2021 13:57:05 +0100 Subject: [PATCH] Clean up html structure (#1869) Fix different html syntax errors to improve a11y. --- gradle/changelog/cleanup_html.yaml | 2 + scm-ui/ui-components/src/DateFromNow.tsx | 3 +- scm-ui/ui-components/src/DateShort.tsx | 3 +- scm-ui/ui-components/src/Icon.tsx | 6 +- .../ui-components/src/OverviewPageActions.tsx | 4 +- scm-ui/ui-components/src/Tooltip.tsx | 2 +- .../src/__snapshots__/storyshots.test.ts.snap | 718 ++---------------- .../ui-components/src/forms/FilterInput.tsx | 1 + scm-ui/ui-components/src/forms/Select.tsx | 8 +- scm-ui/ui-components/src/layout/Header.tsx | 4 +- .../src/navigation/SecondaryNavigation.tsx | 2 +- .../src/repos/RepositoryFlags.tsx | 4 +- .../ui-webapp/public/locales/de/commons.json | 5 +- .../ui-webapp/public/locales/en/commons.json | 5 +- .../src/containers/NavigationBar.tsx | 7 +- .../ui-webapp/src/containers/OmniSearch.tsx | 25 +- .../components/list/RepositoryGroupEntry.tsx | 2 +- .../src/repos/sources/components/FileIcon.tsx | 8 +- .../src/users/components/table/UserRow.tsx | 4 +- 19 files changed, 105 insertions(+), 708 deletions(-) create mode 100644 gradle/changelog/cleanup_html.yaml diff --git a/gradle/changelog/cleanup_html.yaml b/gradle/changelog/cleanup_html.yaml new file mode 100644 index 0000000000..0488bfcb62 --- /dev/null +++ b/gradle/changelog/cleanup_html.yaml @@ -0,0 +1,2 @@ +- type: fixed + description: Cleanup html errors ([#1869](https://github.com/scm-manager/scm-manager/pull/1869)) diff --git a/scm-ui/ui-components/src/DateFromNow.tsx b/scm-ui/ui-components/src/DateFromNow.tsx index 8b5a6c0a37..7db403b975 100644 --- a/scm-ui/ui-components/src/DateFromNow.tsx +++ b/scm-ui/ui-components/src/DateFromNow.tsx @@ -36,8 +36,9 @@ const DateFromNow: FC = ({ className, ...dateProps }) => { return null; } + const dateTime = formatter.formatFull(); return ( - + {formatter.formatDistance()} ); diff --git a/scm-ui/ui-components/src/DateShort.tsx b/scm-ui/ui-components/src/DateShort.tsx index d0da04cb87..a835eb239a 100644 --- a/scm-ui/ui-components/src/DateShort.tsx +++ b/scm-ui/ui-components/src/DateShort.tsx @@ -36,8 +36,9 @@ const DateShort: FC = ({ className, ...dateProps }) => { return null; } + const dateTime = formatter.formatFull(); return ( - + {formatter.formatShort()} ); diff --git a/scm-ui/ui-components/src/Icon.tsx b/scm-ui/ui-components/src/Icon.tsx index 0adf2095a3..e6db67698f 100644 --- a/scm-ui/ui-components/src/Icon.tsx +++ b/scm-ui/ui-components/src/Icon.tsx @@ -46,14 +46,14 @@ const Icon: FC = ({ className, onClick, testId, - tabIndex = -1, + tabIndex, onEnter, - alt = title, + alt = title }) => { return ( event.key === "Enter" && onEnter && onEnter(event)} + onKeyPress={event => event.key === "Enter" && onEnter && onEnter(event)} title={title} className={classNames(iconStyle, "fa-fw", "fa-" + name, `has-text-${color}`, className)} tabIndex={tabIndex} diff --git a/scm-ui/ui-components/src/OverviewPageActions.tsx b/scm-ui/ui-components/src/OverviewPageActions.tsx index bbd5fac697..6c60e18708 100644 --- a/scm-ui/ui-components/src/OverviewPageActions.tsx +++ b/scm-ui/ui-components/src/OverviewPageActions.tsx @@ -52,7 +52,7 @@ const OverviewPageActions: FC = ({ groupSelected, label, testId, - searchPlaceholder, + searchPlaceholder }) => { const history = useHistory(); const location = useLocation(); @@ -63,7 +63,7 @@ const OverviewPageActions: FC = ({
@@ -155,7 +152,6 @@ exports[`Storyshots BreadCrumb Default 1`] = ` className="fas fa-fw fa-link has-text-inherit" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -192,7 +188,6 @@ exports[`Storyshots BreadCrumb Long path 1`] = ` aria-label="breadcrumb.home" className="fas fa-fw fa-home has-text-inherit Breadcrumb__HomeIcon-zvtb4t-2 inWuJD" onKeyPress={[Function]} - tabIndex={-1} title="breadcrumb.home" /> @@ -315,7 +310,6 @@ exports[`Storyshots BreadCrumb Long path 1`] = ` className="fas fa-fw fa-link has-text-inherit" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -351,7 +345,6 @@ exports[`Storyshots BreadCrumb With prefix button 1`] = ` aria-label="heart icon" className="fas fa-fw fa-heart has-text-danger" onKeyPress={[Function]} - tabIndex={-1} />
@@ -366,7 +359,6 @@ exports[`Storyshots BreadCrumb With prefix button 1`] = ` aria-label="breadcrumb.home" className="fas fa-fw fa-home has-text-inherit Breadcrumb__HomeIcon-zvtb4t-2 inWuJD" onKeyPress={[Function]} - tabIndex={-1} title="breadcrumb.home" /> @@ -439,7 +431,6 @@ exports[`Storyshots BreadCrumb With prefix button 1`] = ` className="fas fa-fw fa-link has-text-inherit" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -466,7 +457,6 @@ exports[`Storyshots Buttons/AddButton Default 1`] = ` @@ -830,7 +820,6 @@ exports[`Storyshots Buttons/DeleteButton Default 1`] = ` @@ -939,7 +928,6 @@ exports[`Storyshots CardColumn Default 1`] = ` aria-label="avatar" className="fas fa-fw fa-icons fa-2x fa-fw has-text-grey-light" onKeyPress={[Function]} - tabIndex={-1} />
@@ -4281,84 +4251,72 @@ exports[`Storyshots Icon Colors 1`] = ` aria-label="default color" className="fas fa-fw fa-cat has-text-grey-light" onKeyPress={[Function]} - tabIndex={-1} title="default color" /> @@ -4371,27 +4329,23 @@ exports[`Storyshots Icon Default 1`] = ` @@ -4405,21 +4359,18 @@ exports[`Storyshots Icon Icon styles 1`] = ` aria-label="solid style" className="fas fa-fw fa-star has-text-inherit" onKeyPress={[Function]} - tabIndex={-1} title="solid style" /> @@ -4433,28 +4384,24 @@ exports[`Storyshots Icon More options 1`] = ` aria-label="rotate-270" className="fas fa-fw fa-snowboarding fa-rotate-270 has-text-grey-light" onKeyPress={[Function]} - tabIndex={-1} title="rotate-270" /> @@ -4468,63 +4415,54 @@ exports[`Storyshots Icon Sizing 1`] = ` aria-label="default size" className="fas fa-fw fa-cat has-text-grey-light" onKeyPress={[Function]} - tabIndex={-1} title="default size" /> @@ -4648,7 +4586,6 @@ exports[`Storyshots MarkdownView Code without Lang 1`] = ` className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7166,7 +7085,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7198,7 +7116,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7223,7 +7140,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7358,7 +7274,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7467,7 +7382,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7544,7 +7458,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7569,7 +7482,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7722,7 +7634,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7747,7 +7658,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7843,7 +7753,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7920,7 +7829,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -7945,7 +7853,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8053,7 +7960,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8078,7 +7984,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8213,7 +8118,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8335,7 +8239,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8451,7 +8354,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8476,7 +8378,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8637,7 +8538,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8764,7 +8664,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8841,7 +8740,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8866,7 +8764,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8936,7 +8833,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -8980,7 +8876,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9091,7 +8986,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9116,7 +9010,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9175,7 +9068,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9200,7 +9092,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9343,7 +9234,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9387,7 +9277,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9463,7 +9352,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9488,7 +9376,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9552,7 +9439,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9577,7 +9463,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9673,7 +9558,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9762,7 +9646,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9787,7 +9670,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9830,7 +9712,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9855,7 +9736,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -9942,7 +9822,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10071,7 +9950,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10096,7 +9974,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10166,7 +10043,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10223,7 +10099,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10300,7 +10175,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10325,7 +10199,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10376,7 +10249,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10401,7 +10273,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10458,7 +10329,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10509,7 +10379,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10534,7 +10403,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10585,7 +10453,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10610,7 +10477,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10654,7 +10520,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10731,7 +10596,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10756,7 +10620,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10807,7 +10670,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10832,7 +10694,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10915,7 +10776,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -10959,7 +10819,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11114,7 +10973,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11139,7 +10997,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11235,7 +11092,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11317,7 +11173,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11342,7 +11197,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11386,7 +11240,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11567,7 +11420,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11592,7 +11444,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11714,7 +11565,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11804,7 +11654,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11829,7 +11678,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11873,7 +11721,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11917,7 +11764,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -11981,7 +11827,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12006,7 +11851,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12076,7 +11920,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12138,7 +11981,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12267,7 +12109,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12292,7 +12133,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12371,7 +12211,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12449,7 +12288,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12606,7 +12444,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12631,7 +12468,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12716,7 +12552,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12741,7 +12576,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -12837,7 +12671,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13068,7 +12901,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13093,7 +12925,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13176,7 +13007,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13253,7 +13083,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13278,7 +13107,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13365,7 +13193,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13473,7 +13300,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13584,7 +13410,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13609,7 +13434,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13666,7 +13490,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13723,7 +13546,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13787,7 +13609,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13812,7 +13633,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13921,7 +13741,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -13980,7 +13799,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14029,7 +13847,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14122,7 +13939,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14147,7 +13963,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14208,7 +14023,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14259,7 +14073,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14310,7 +14123,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14358,7 +14170,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14383,7 +14194,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14429,7 +14239,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14509,7 +14318,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14558,7 +14366,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14583,7 +14390,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14631,7 +14437,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14656,7 +14461,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14717,7 +14521,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14758,7 +14561,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14831,7 +14633,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -14856,7 +14657,6 @@ and this project adheres to className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} /> @@ -15052,7 +14852,6 @@ exports[`Storyshots MarkdownView Inline Xml 1`] = ` className="fas fa-fw fa-link has-text-grey-light" onClick={[Function]} onKeyPress={[Function]} - tabIndex={-1} />