Skip to content

Commit

Permalink
#2490 - added v-skills and v-skills-onMount directives
Browse files Browse the repository at this point in the history
  • Loading branch information
rmmayo committed May 10, 2024
1 parent 9353618 commit 1e0c9a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dashboard-prime/src/components/projects/ProjectPage.vue
Expand Up @@ -254,8 +254,8 @@ const setProject = (newProject) => {
size="small"
label="Preview"
icon="fas fa-eye"
v-skills="'PreviewProjectClientDisplay'"
:aria-label="`preview client display for project ${project.name}`">
<!-- v-skills="'PreviewProjectClientDisplay'" -->
</SkillsButton>
</router-link>
<SkillsButton v-if="projConfig.isProjConfigDiscoverable"
Expand All @@ -265,8 +265,8 @@ const setProject = (newProject) => {
data-cy="shareProjBtn"
class="border-1 border-black-alpha-90"
label="Share" icon="fas fa-share-alt"
v-skills="'ShareProject'"
:aria-label="`Share ${project.name} with new users`">
<!--&lt;!&ndash; v-skills="'ShareProject'" &ndash;&gt;-->
</SkillsButton>
</div>
<div data-cy="projectCreated" class="mt-3">
Expand Down
6 changes: 3 additions & 3 deletions dashboard-prime/src/components/skills/SkillsTable.vue
Expand Up @@ -571,8 +571,8 @@ const editImportedSkillInfo = ref({
:aria-label="'copy Skill '+slotProps.data.name"
:ref="'copy_'+slotProps.data.skillId"
:disabled="addSkillDisabled"
v-skills="'CopySkill'"
title="Copy Skill" />
<!-- v-skills="'CopySkill'" -->
<SkillsButton
icon="fas fa-trash"
:id="`deleteSkillButton_${slotProps.data.skillId}`"
Expand Down Expand Up @@ -605,17 +605,17 @@ const editImportedSkillInfo = ref({
outlined
:disabled="slotProps.data.disabledDownButton"
:aria-label="'move '+slotProps.data.name+' down in the display order'"
v-skills="'ChangeSkillDisplayOrder'"
:data-cy="`orderMoveDown_${slotProps.data.skillId}`" />
<!-- v-skills="'ChangeSkillDisplayOrder'"-->
<SkillsButton
icon="fas fa-arrow-circle-up"
@click="subjSkillsDisplayOrder.moveDisplayOrderUp(slotProps.data)"
size="small"
outlined
:disabled="slotProps.data.disabledUpButton"
:aria-label="'move '+slotProps.data.name+' up in the display order'"
v-skills="'ChangeSkillDisplayOrder'"
:data-cy="`orderMoveUp_${slotProps.data.skillId}`" />
<!-- v-skills="'ChangeSkillDisplayOrder'"-->
</ButtonGroup>
</div>
</div>
Expand Down

0 comments on commit 1e0c9a6

Please sign in to comment.