这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/utils/chat/plugins/markdown-katex.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function math_inline(state, silent) {
match += 1;
}

// No closing delimter found. Consume $ and continue.
// No closing delimiter found. Consume $ and continue.
if (match === -1) {
if (!silent) {
state.pending += "$";
Expand Down
2 changes: 1 addition & 1 deletion server/utils/prisma/PRISMA.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ In the project root's `package.json`, there are several scripts set up to help y
- **prisma:migrate**: Runs the migrations to ensure the database is in sync with the schema.
- **prisma:seed**: Seeds the database with initial data.
- **prisma:setup**: A convenience script that runs `prisma:generate`, `prisma:migrate`, and `prisma:seed` in sequence.
- **sqlite:migrate**: (To be run from the `server` directory) This script is for users transitioning from the old SQLite custom ORM setup to Prisma and will migrate all exisiting data over to Prisma. If you're a new user, your setup will already use Prisma.
- **sqlite:migrate**: (To be run from the `server` directory) This script is for users transitioning from the old SQLite custom ORM setup to Prisma and will migrate all existing data over to Prisma. If you're a new user, your setup will already use Prisma.

To run any of these scripts, use `yarn` followed by the script name from the project root directory. For example:

Expand Down