@lobehub/chat 1.15.6 → 1.15.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.15.7](https://github.com/lobehub/lobe-chat/compare/v1.15.6...v1.15.7)
6
+
7
+ <sup>Released on **2024-09-03**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Fix provider disabled title style.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Fix provider disabled title style, closes [#3743](https://github.com/lobehub/lobe-chat/issues/3743) ([2c72452](https://github.com/lobehub/lobe-chat/commit/2c72452))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.15.6](https://github.com/lobehub/lobe-chat/compare/v1.15.5...v1.15.6)
6
31
 
7
32
  <sup>Released on **2024-09-01**</sup>
@@ -88,7 +88,7 @@ docker compose up -d
88
88
  - `Redirect URI` should be `http://localhost:3210/api/auth/callback/logto`
89
89
  - `Post sign-out redirect URI` should be `http://localhost:3210/`
90
90
 
91
- 3. Obtain the `Client ID` and `Client Secret`, and fill them into your `.env` file corresponding to `LOGTO_CLIENT_ID` and `LOGTO_CLIENT_SECRET`.
91
+ 3. Obtain the `App ID` and `App secrets`, and fill them into your `.env` file corresponding to `LOGTO_CLIENT_ID` and `LOGTO_CLIENT_SECRET`.
92
92
 
93
93
  ### Configure MinIO S3
94
94
 
@@ -257,7 +257,7 @@ You need to first access the WebUI for configuration:
257
257
  src="https://github.com/user-attachments/assets/5b816379-c07b-40ea-bde4-df16e2e4e523"
258
258
  />
259
259
 
260
- 5. Obtain `Client ID` and `Client Secret`, and fill them into your `.env` file under `LOGTO_CLIENT_ID` and `LOGTO_CLIENT_SECRET`.
260
+ 5. Obtain `App ID` and `App secrets`, and fill them into your `.env` file under `LOGTO_CLIENT_ID` and `LOGTO_CLIENT_SECRET`.
261
261
 
262
262
  6. Set `LOGTO_ISSUER` in your `.env` file to `https://lobe-auth-api.example.com/oidc`.
263
263
 
@@ -86,7 +86,7 @@ docker compose up -d
86
86
  - `Redirect URI` 为 `http://localhost:3210/api/auth/callback/logto`
87
87
  - `Post sign-out redirect URI` 为 `http://localhost:3210/`
88
88
 
89
- 3. 获取 `Client ID` 和 `Client Secret`,填入 `.env` 文件中对应的 `LOGTO_CLIENT_ID` 、 `LOGTO_CLIENT_SECRETT`
89
+ 3. 获取 `App ID` 和 `App secrets`,填入 `.env` 文件中对应的 `LOGTO_CLIENT_ID` 、 `LOGTO_CLIENT_SECRETT`
90
90
 
91
91
  ### 配置 MinIO S3
92
92
 
@@ -255,7 +255,7 @@ docker compose up -d # 重新启动
255
255
  src="https://github.com/user-attachments/assets/5b816379-c07b-40ea-bde4-df16e2e4e523"
256
256
  />
257
257
 
258
- 5. 获取 `Client ID` 和 `Client Secret`,填入你的 `.env` 文件中的 `LOGTO_CLIENT_ID` 和 `LOGTO_CLIENT_SECRETT` 中
258
+ 5. 获取 `App ID` 和 `App secrets`,填入你的 `.env` 文件中的 `LOGTO_CLIENT_ID` 和 `LOGTO_CLIENT_SECRETT` 中
259
259
 
260
260
  6. 配置你的 `.env` 文件中 `LOGTO_ISSUER` 为 `https://lobe-auth-api.example.com/oidc`
261
261
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.15.6",
3
+ "version": "1.15.7",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
5
5
  "keywords": [
6
6
  "framework",
@@ -266,7 +266,7 @@ const ProviderConfig = memo<ProviderConfigProps>(
266
266
  ) : undefined}
267
267
  </Flexbox>
268
268
  ),
269
- title: title ?? (
269
+ title: (
270
270
  <Flexbox
271
271
  align={'center'}
272
272
  className={styles.safariIconWidthFix}
@@ -277,7 +277,7 @@ const ProviderConfig = memo<ProviderConfigProps>(
277
277
  ...(enabled ? {} : { filter: 'grayscale(100%)', maxHeight: 24, opacity: 0.66 }),
278
278
  }}
279
279
  >
280
- <ProviderCombine provider={id} size={24} />
280
+ {title ?? <ProviderCombine provider={id} size={24} />}
281
281
  </Flexbox>
282
282
  ),
283
283
  };