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
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
- Send email when domain has been connected
- Create user
- Show "Powered by Veerify" does not do anything when clicked
- add API with API docs
- Update color picker to use new design
- click to access feedback details for items in personal feedback list
Expand Down
2 changes: 1 addition & 1 deletion components/products/ProductSettingsAppearance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
:value="form.accentColor"
class="w-8 h-8 rounded border cursor-pointer"
@input="form.accentColor = $event.target.value"
/>

Check warning on line 20 in components/products/ProductSettingsAppearance.vue

View workflow job for this annotation

GitHub Actions / Lint

Disallow self-closing on HTML void elements (<input/>)
<Input
id="accent-color"
v-model="form.accentColor"
Expand Down Expand Up @@ -84,7 +84,7 @@
alt="Logo"
class="h-8 w-8 rounded object-cover bg-white/20"
@error="$event.target.style.display = 'none'"
/>

Check warning on line 87 in components/products/ProductSettingsAppearance.vue

View workflow job for this annotation

GitHub Actions / Lint

Disallow self-closing on HTML void elements (<img/>)
<div
v-else
class="h-8 w-8 rounded bg-white/20 flex items-center justify-center"
Expand Down Expand Up @@ -114,7 +114,7 @@
<div class="h-10 rounded-md bg-muted" />
</div>
<div v-if="form.showPoweredBy" class="border-t px-4 py-2 text-center">
<p class="text-xs text-muted-foreground">Powered by Veerify</p>
<a href="https://veerify.com" target="_blank" rel="noopener noreferrer" class="text-xs text-muted-foreground hover:underline">Powered by Veerify</a>
</div>
</div>
</CardContent>
Expand Down
2 changes: 1 addition & 1 deletion components/public/PublicFeedbackBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@

<!-- Footer -->
<div class="mt-12 pt-6 border-t text-center text-sm text-muted-foreground">
Powered by <span class="font-medium">Veerify</span>
Powered by <a href="https://veerify.com" target="_blank" rel="noopener noreferrer" class="font-medium hover:underline">Veerify</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/public/PublicTeamProducts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</div>

<div class="mt-12 pt-6 border-t text-center text-sm text-muted-foreground">
Powered by <span class="font-medium">Veerify</span>
Powered by <a href="https://veerify.com" target="_blank" rel="noopener noreferrer" class="font-medium hover:underline">Veerify</a>
</div>
</div>
</div>
Expand Down
Loading