Skip to content

Commit

Permalink
Changed Contribute and Next question icons
Browse files Browse the repository at this point in the history
  • Loading branch information
rimutaka committed Nov 13, 2024
1 parent c73208d commit 053d69c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vue/src/components/FooterStatic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const menuItems = ref([
},
{
label: 'Contribute',
icon: 'pi pi-sparkles',
icon: 'pi pi-heart',
route: `/${PageIDs.CONTRIBUTE}`
},
{
Expand Down
2 changes: 1 addition & 1 deletion vue/src/components/QuestionCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<Button v-if="hasToken" label="Edit" size="small" icon="pi pi-pencil" severity="secondary" class="whitespace-nowrap me-2" @click="navigateToEditPage" />
<LinkButton :href="questionTopicAndPageUrl" label="Copy link" class="me-2 mb-2" icon="pi pi-share-alt" @click="copyLinkToClipboard" />
<LinkButton v-if="!isAnswered && next" :href="questionTopicOnlyUrl" label="Skip" class="me-2 mb-2" icon="pi pi-angle-double-right" @click="getNextQuestion" />
<LinkButton v-if="isAnswered && next" :href="questionTopicOnlyUrl" label="Next question" class="mb-2" icon="pi pi-angle-double-right" @click="getNextQuestion" />
<LinkButton v-if="isAnswered && next" :href="questionTopicOnlyUrl" label="Try one more question" class="mb-2" icon="pi pi-sparkles" @click="getNextQuestion" />
<p v-if="linkCopiedFlag" class="text-xs text-slate-500">Link copied to the clipboard</p>
<p v-if="!linkCopiedFlag">&nbsp;</p>
</div>
Expand Down

0 comments on commit 053d69c

Please sign in to comment.