mirror of
https://github.com/wushuo894/ani-rss.git
synced 2026-03-15 01:20:23 +00:00
refactor: 尝试性解决登录页密码可能无法自定填充
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
- fix: 修复代理设置不在tmdb生效的问题
|
||||
- fix: 修复订阅标题长度
|
||||
- fix: 修复可以删除0个订阅的问题
|
||||
- refactor: 尝试性解决登录页密码可能无法自定填充
|
||||
- refactor: 优化修改密码或配置下载器会触发自动填充的问题
|
||||
|
||||
[请不要将本项目在国内宣传](https://github.com/wushuo894/ani-rss/discussions/504)
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>ani.rss</groupId>
|
||||
<artifactId>ani-rss</artifactId>
|
||||
<version>2.4.22</version>
|
||||
<version>2.4.23</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ani-rss-application</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>ani.rss</groupId>
|
||||
<artifactId>ani-rss</artifactId>
|
||||
<version>2.4.22</version>
|
||||
<version>2.4.23</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ani-rss-commons</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>ani.rss</groupId>
|
||||
<artifactId>ani-rss</artifactId>
|
||||
<version>2.4.22</version>
|
||||
<version>2.4.23</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ani-rss-core</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>ani.rss</groupId>
|
||||
<artifactId>ani-rss</artifactId>
|
||||
<version>2.4.22</version>
|
||||
<version>2.4.23</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ani-rss-domain</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>ani.rss</groupId>
|
||||
<artifactId>ani-rss</artifactId>
|
||||
<version>2.4.22</version>
|
||||
<version>2.4.23</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ani-rss-ui</artifactId>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
@keyup.enter="login"
|
||||
@submit="login">
|
||||
<el-form-item>
|
||||
<el-input v-model="user.username" placeholder="用户名">
|
||||
<el-input v-model="user.username" placeholder="用户名" autocomplete="username">
|
||||
<template #prefix>
|
||||
<el-icon class="el-input__icon">
|
||||
<User/>
|
||||
@@ -21,7 +21,7 @@
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-input v-model="user.password" show-password
|
||||
placeholder="密码">
|
||||
placeholder="密码" autocomplete="current-password">
|
||||
<template #prefix>
|
||||
<el-icon class="el-input__icon">
|
||||
<Key/>
|
||||
|
||||
@@ -64,7 +64,8 @@
|
||||
</template>
|
||||
<template v-else>
|
||||
<el-form-item label="用户名">
|
||||
<el-input v-model:model-value="props.config.downloadToolUsername" placeholder="username">
|
||||
<el-input v-model:model-value="props.config.downloadToolUsername" placeholder="username"
|
||||
autocomplete="new-password">
|
||||
<template #prefix>
|
||||
<el-icon class="el-input__icon">
|
||||
<User/>
|
||||
@@ -73,7 +74,8 @@
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="密码">
|
||||
<el-input v-model:model-value="props.config.downloadToolPassword" placeholder="password" show-password>
|
||||
<el-input v-model:model-value="props.config.downloadToolPassword" placeholder="password" show-password
|
||||
autocomplete="new-password">
|
||||
<template #prefix>
|
||||
<el-icon class="el-input__icon">
|
||||
<Key/>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
event.preventDefault()
|
||||
}">
|
||||
<el-form-item label="用户名">
|
||||
<el-input v-model:model-value="props.config.login.username">
|
||||
<el-input v-model:model-value="props.config.login.username" autocomplete="new-password">
|
||||
<template #prefix>
|
||||
<el-icon class="el-input__icon">
|
||||
<User/>
|
||||
@@ -12,7 +12,7 @@
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="密码">
|
||||
<el-input v-model:model-value="props.config.login.password">
|
||||
<el-input v-model:model-value="props.config.login.password" autocomplete="new-password">
|
||||
<template #prefix>
|
||||
<el-icon class="el-input__icon">
|
||||
<Key/>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>ani.rss</groupId>
|
||||
<artifactId>ani-rss</artifactId>
|
||||
<version>2.4.22</version>
|
||||
<version>2.4.23</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ani-rss-web</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user