Skip to content

Commit

Permalink
Merge pull request #1361 from ProcessMaker/feature/FOUR-2338
Browse files Browse the repository at this point in the history
Accessibility updates
  • Loading branch information
boliviacoca authored Jun 16, 2021
2 parents 5c01410 + 0777029 commit 875236c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/inspectors/DocumentationFormTextArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<div class="d-flex justify-content-between align-items-end mb-2">
<label class="m-0">{{ $t(label) }}</label>
<button type="button" v-b-modal.documentation-modal class="btn-sm float-right" data-test="documentation-modal-button"><i class="fas fa-expand"/></button>
<button type="button" :aria-label="$t('Expand')" v-b-modal.documentation-modal class="btn-sm float-right" data-test="documentation-modal-button"><i class="fas fa-expand"/></button>
</div>

<form-text-area
Expand Down
6 changes: 3 additions & 3 deletions src/components/inspectors/MessageSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</template>
</multiselect>
<div class="btn-group ml-1" role="group">
<button type="button" class="btn btn-secondary btn-sm" @click="toggleConfigMessage" data-cy="events-list">
<button type="button" class="btn btn-secondary btn-sm" @click="toggleConfigMessage" data-cy="events-list" :title="$t('Configure')">
<i class="fa fa-ellipsis-h" />
</button>
</div>
Expand Down Expand Up @@ -96,8 +96,8 @@
{{ message.name }}
</td>
<td align="right">
<button class="btn-link ml-2" @click="editMessage(message)"><i class="fa fa-pen" data-cy="events-edit" /></button>
<button class="btn-link ml-2" @click="removeMessage(message)"><i class="fa fa-trash" data-cy="events-remove" /></button>
<button :aria-label="$t('Edit')" class="btn-link ml-2" @click="editMessage(message)"><i class="fa fa-pen" data-cy="events-edit" /></button>
<button :aria-label="$t('Remove')" class="btn-link ml-2" @click="removeMessage(message)"><i class="fa fa-trash" data-cy="events-remove" /></button>
</td>
</tr>
</tbody>
Expand Down
6 changes: 3 additions & 3 deletions src/components/inspectors/SignalSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</template>
</multiselect>
<div class="btn-group ml-1" role="group" v-if="canEdit">
<button type="button" class="btn btn-secondary btn-sm" @click="toggleConfigSignal" data-cy="events-list">
<button type="button" class="btn btn-secondary btn-sm" @click="toggleConfigSignal" data-cy="events-list" :title="$t('Configure')">
<i class="fa fa-ellipsis-h" />
</button>
</div>
Expand Down Expand Up @@ -100,8 +100,8 @@
{{ signal.name }}
</td>
<td align="right">
<button class="btn-link ml-2" @click="editSignal(signal)" v-if="can('edit-signals')"><i class="fa fa-pen" data-cy="events-edit" /></button>
<button class="btn-link ml-2" @click="removeSignal(signal)" v-if="can('delete-signals')"><i class="fa fa-trash" data-cy="events-remove" /></button>
<button :aria-label="$t('Edit')" class="btn-link ml-2" @click="editSignal(signal)" v-if="can('edit-signals')"><i class="fa fa-pen" data-cy="events-edit" /></button>
<button :aria-label="$t('Remove')" class="btn-link ml-2" @click="removeSignal(signal)" v-if="can('delete-signals')"><i class="fa fa-trash" data-cy="events-remove" /></button>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 875236c

Please sign in to comment.