i18n - docs translations (#23381)
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
This commit is contained in:
committed by
GitHub
parent
d7b1ccaa21
commit
bd5d5a3c4e
@@ -51,7 +51,7 @@ export default definePageLayout({
|
||||
|
||||
### 关键点
|
||||
|
||||
* `type` 通常为 'RECORD_PAGE',用于自定义特定对象的详情视图。
|
||||
* `type` 为 `'RECORD_INDEX'`、`'RECORD_PAGE'`、`'DASHBOARD'` 或 `'STANDALONE_PAGE'` 之一。 使用 `'RECORD_PAGE'` 来自定义特定对象的详情视图。
|
||||
* `objectUniversalIdentifier` 指定此布局适用于哪个对象。
|
||||
* 每个 `tab` 使用 `title`、`position` 和 `layoutMode` 定义页面的一个部分(记录页面使用 `VERTICAL_LIST`,仪表板使用 `GRID`)。 包含单个小部件的选项卡会自动将其渲染为全宽显示;包含多个小部件时,它们会堆叠为卡片。
|
||||
* 选项卡内的每个 `widget` 可以渲染一个[前端组件](/l/zh/developers/extend/apps/layout/front-components)、关系列表或其他内置小部件类型。
|
||||
|
||||
@@ -171,6 +171,28 @@ plugins: [
|
||||
|
||||
在生产环境中,逻辑函数默认处于禁用状态。 将 `LOGIC_FUNCTION_TYPE` 环境变量设置为 `LOCAL` 或 `LAMBDA` 以启用它们。 这可以通过环境变量或管理面板的数据库变量进行配置。 详情请参见[逻辑函数设置指南](/l/zh/developers/self-host/capabilities/setup#logic-functions-available-drivers)。
|
||||
|
||||
#### 当我在 AI 聊天中输入消息时,它不会立即回答,我必须刷新页面才能看到答案
|
||||
|
||||
将以下块添加到 nginx 配置
|
||||
|
||||
```
|
||||
location ~* ^/api/.*stream|\/graphql\/stream {
|
||||
proxy_pass http://twenty_backend;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_buffering off;
|
||||
proxy_request_buffering off;
|
||||
proxy_cache off;
|
||||
gzip off;
|
||||
#chunked_transfer_encoding off;
|
||||
add_header X-Accel-Buffering no always;
|
||||
}
|
||||
```
|
||||
|
||||
### 一键使用 Docker Compose
|
||||
|
||||
#### 无法登录
|
||||
|
||||
Reference in New Issue
Block a user