Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
b19e736f
Commit
b19e736f
authored
Oct 20, 2025
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: tweak demo data
parent
b4ea7d84
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
01__dump.sql
store/seed/sqlite/01__dump.sql
+2
-2
PasswordSignInForm.tsx
web/src/components/PasswordSignInForm.tsx
+2
-2
No files found.
store/seed/sqlite/01__dump.sql
View file @
b19e736f
This diff is collapsed.
Click to expand it.
web/src/components/PasswordSignInForm.tsx
View file @
b19e736f
...
@@ -16,8 +16,8 @@ const PasswordSignInForm = observer(() => {
...
@@ -16,8 +16,8 @@ const PasswordSignInForm = observer(() => {
const
t
=
useTranslate
();
const
t
=
useTranslate
();
const
navigateTo
=
useNavigateTo
();
const
navigateTo
=
useNavigateTo
();
const
actionBtnLoadingState
=
useLoading
(
false
);
const
actionBtnLoadingState
=
useLoading
(
false
);
const
[
username
,
setUsername
]
=
useState
(
workspaceStore
.
state
.
profile
.
mode
===
"demo"
?
"
yourselfhosted
"
:
""
);
const
[
username
,
setUsername
]
=
useState
(
workspaceStore
.
state
.
profile
.
mode
===
"demo"
?
"
memos
"
:
""
);
const
[
password
,
setPassword
]
=
useState
(
workspaceStore
.
state
.
profile
.
mode
===
"demo"
?
"
yourselfhosted
"
:
""
);
const
[
password
,
setPassword
]
=
useState
(
workspaceStore
.
state
.
profile
.
mode
===
"demo"
?
"
memos
"
:
""
);
const
handleUsernameInputChanged
=
(
e
:
React
.
ChangeEvent
<
HTMLInputElement
>
)
=>
{
const
handleUsernameInputChanged
=
(
e
:
React
.
ChangeEvent
<
HTMLInputElement
>
)
=>
{
const
text
=
e
.
target
.
value
as
string
;
const
text
=
e
.
target
.
value
as
string
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment