Skip to content
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
8 changes: 7 additions & 1 deletion src/components/TypeaheadSelected.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
<p class="text">
{{ content }}
</p>
<Button class="button" intent="tertiary" type="button" @click="click">
<Button
class="button"
intent="tertiary"
type="button"
aria-label="Remove"
@click="click"
>
<FontAwesomeIcon :icon="faMinus" />
</Button>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/maps/DataSourceMapSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
v-if="activeLocation"
class="p-2 mr-3 flex items-center justify-center text-wineneutral-950 bg-wineneutral-300 hover:bg-wineneutral-300/90 focus:bg-wineneutral-300/90 dark:bg-goldneutral-400 dark:hover:bg-goldneutral-400/90 dark:focus:bg-goldneutral-400/90"
intent="tertiary"
aria-label="Go back"
@click="handleBackClick"
>
<FontAwesomeIcon :icon="faChevronLeft" />
Expand Down
1 change: 1 addition & 0 deletions src/pages/annotate/_components/_index/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<button
type="button"
class="text-wineneutral-500 hover:text-wineneutral-200 transition-colors p-1 hover:bg-wineneutral-800"
aria-label="Close"
@click="emitClose"
>
<FontAwesomeIcon :icon="faXmark" class="w-5 h-5" />
Expand Down
1 change: 1 addition & 0 deletions src/pages/annotate/_components/_index/ZoomableImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="1.5"
aria-hidden="true"
>
<path
stroke-linecap="round"
Expand Down
1 change: 1 addition & 0 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@
<a
href="https://docs.pdap.io/activities/terms-and-definitions/terminology"
target="blank"
aria-label="Terminology definition"
>
<i class="fa fa-question-circle" />
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
v-if="activeLocation"
class="p-2 mr-3 flex items-center justify-center text-wineneutral-950 bg-wineneutral-300 hover:bg-wineneutral-300/90 focus:bg-wineneutral-300/90 dark:bg-goldneutral-400 dark:hover:bg-goldneutral-400/90 dark:focus:bg-goldneutral-400/90"
intent="tertiary"
aria-label="Go back"
@click="handleBackClick"
>
<FontAwesomeIcon :icon="faChevronLeft" />
Expand Down
2 changes: 2 additions & 0 deletions src/pages/profile/_components/APIKey.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
v-if="onDismiss"
class="h-max p-0 hover:brightness-95 max-w-max py-1 px-2"
intent="tertiary"
aria-label="Dismiss"
:data-test="TEST_IDS.profile_api_key_dismiss"
@click="onDismiss"
>
Expand All @@ -22,6 +23,7 @@
<Button
class="h-max p-0 hover:brightness-95 text-left max-w-full rounded"
intent="tertiary"
:aria-label="copied ? 'Copied' : 'Copy API key'"
:data-test="TEST_IDS.profile_api_key_copy"
@click="copyToClipboard"
>
Expand Down