Skip to content

Commit

Permalink
chore(settings): clarify link limit
Browse files Browse the repository at this point in the history
  • Loading branch information
amandesai01 committed Sep 16, 2024
1 parent 4a19028 commit 592b1fe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/components/admin/CareerSiteFrame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,12 @@ const logoUpdated = (id: string) => {
label="Bio"
/>
<div class="w-full mt-8">
<InputLabel label="Featured Links" id="featued-links" :error="errors['links']" />
<InputLabel
label="Featured Links"
id="featued-links"
:error="errors['links']"
sublabel="Only first 3 links will be displayed in header."
/>
<div v-for="(link, index) in links" :key="index" class="flex space-x-2 mb-2 w-full items-center">
<InputText v-model="link.title" :id="`link-title-${index}`" placeholder="Mars Mission Docs" />
<InputText
Expand Down

0 comments on commit 592b1fe

Please sign in to comment.