Skip to content

Commit

Permalink
Fix typo this
Browse files Browse the repository at this point in the history
Added li to password tooltip
  • Loading branch information
MarcelGeo committed Jan 10, 2024
1 parent 9f8c1d5 commit c6f4ed9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-MerginMaps-Commercial
<template>
<v-card class="table" v-if="accessRequests && accessRequestsCount > 0" flat>
<v-card-text>
<h3>You requested access to this projects</h3>
<h3>You requested access to these projects</h3>
<project-access-request-table />
</v-card-text>
</v-card>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ defineProps<{ for: string }>()
const tooltip = `
<ul>
<li>Password must be at least 8 characters long.</li>
<li>Password must contain at least 3 character categories among the following:
Lowercase characters (a-z)
Uppercase characters (A-Z)
Digits (0-9)
Special characters
</li>
<li>Password must contain at least 3 character categories among the following:</li>
<ul>
<li>Lowercase characters (a-z)</li>
<li>Uppercase characters (A-Z)</li>
<li>Digits (0-9)</li>
<li>Special characters</li>
</ul>
</ul>
`
</script>

0 comments on commit c6f4ed9

Please sign in to comment.