Skip to content

Commit 018a3f1

Browse files
committed
feat: instruction for adding passkey
1 parent aa30b0b commit 018a3f1

File tree

28 files changed

+1851
-763
lines changed

28 files changed

+1851
-763
lines changed

app/components.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ export {}
77
/* prettier-ignore */
88
declare module 'vue' {
99
export interface GlobalComponents {
10-
2FA2FAAuthorization: typeof import('./src/components/2FA/2FAAuthorization.vue')['default']
11-
2FAAuthorization: typeof import('./src/components/2FA/Authorization.vue')['default']
12-
2FAOTPAuthorization: typeof import('./src/components/2FA/OTPAuthorization.vue')['default']
1310
AAlert: typeof import('ant-design-vue/es')['Alert']
1411
AAutoComplete: typeof import('ant-design-vue/es')['AutoComplete']
1512
AAvatar: typeof import('ant-design-vue/es')['Avatar']

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"less": "^4.2.0",
7070
"postcss": "^8.4.47",
7171
"tailwindcss": "^3.4.11",
72-
"typescript": "5.5.4",
72+
"typescript": "5.3.3",
7373
"unplugin-auto-import": "^0.18.3",
7474
"unplugin-vue-components": "^0.27.4",
7575
"unplugin-vue-define-options": "^1.5.1",

app/pnpm-lock.yaml

Lines changed: 171 additions & 164 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/components/CodeEditor/CodeEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ace.config.setModuleUrl('ace/ext/searchbox', extSearchboxUrl)
4040
/>
4141
</template>
4242

43-
<style scoped>
43+
<style lang="less" scoped>
4444
:deep(.ace_placeholder) {
4545
z-index: 1;
4646
position: relative;

app/src/components/StdDesign/StdDataDisplay/StdCurd.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ function view(id: number | string) {
161161
get(id).then(() => {
162162
visible.value = true
163163
modifyMode.value = false
164+
editMode.value = 'modify'
164165
}).catch(e => {
165166
message.error($gettext(e?.message ?? 'Server error'), 5)
166167
})

app/src/components/StdDesign/StdDataDisplay/StdPagination.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const pageSize = computed({
3030
class="pagination-container"
3131
>
3232
<APagination
33-
v-model:pageSize="pageSize"
33+
v-model:page-size="pageSize"
3434
:disabled="loading"
3535
:current="pagination.current_page"
3636
show-size-changer

0 commit comments

Comments
 (0)