Fixed some tabbing issues

environments/review-docs-devel-1399dq/deployments/6607
Agate 2020-07-06 13:00:53 +02:00
rodzic 8b0ce6ad33
commit e4b0a6a457
3 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -89,7 +89,6 @@
<tr
:id="'queue-item-' + index"
role="button"
tabindex="0"
v-if="track.sources.length > 0"
:key="index"
:class="[{active: index === currentIndex}]"

Wyświetl plik

@ -40,7 +40,7 @@
<translate translate-context="*/Login/*/Verb">Reset your password</translate>
</router-link>
</label>
<password-input :index="2" required v-model="credentials.password" />
<password-input required v-model="credentials.password" />
</div>
</template>

Wyświetl plik

@ -3,7 +3,6 @@
<input
required
name="password"
:tabindex="index"
:type="passwordInputType"
@input="$emit('input', $event.target.value)"
:value="value">
@ -30,7 +29,7 @@ function copyStringToClipboard (str) {
}
export default {
props: ['value', 'index', 'defaultShow', 'copyButton'],
props: ['value', 'defaultShow', 'copyButton'],
data () {
return {
showPassword: this.defaultShow || false,