Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot 1f29506179 🔖 chore(release): v1.0.0-beta.11 [skip ci]
# [1.0.0-beta.11](https://github.com/perfect-panel/ppanel-web/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-02-16)

### 🐛 Bug Fixes

* **email**: Update platform configuration handling to use current ref for consistency ([c90175b](https://github.com/perfect-panel/ppanel-web/commit/c90175b))
2025-02-16 12:09:00 +00:00
web@ppanel c90175b6eb 🐛 fix(email): Update platform configuration handling to use current ref for consistency 2025-02-16 19:06:17 +07:00
3 changed files with 13 additions and 6 deletions
+7
View File
@@ -1,6 +1,13 @@
<a name="readme-top"></a> <a name="readme-top"></a>
# Changelog # Changelog
# [1.0.0-beta.11](https://github.com/perfect-panel/ppanel-web/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-02-16)
### 🐛 Bug Fixes
* **email**: Update platform configuration handling to use current ref for consistency ([c90175b](https://github.com/perfect-panel/ppanel-web/commit/c90175b))
# [1.0.0-beta.10](https://github.com/perfect-panel/ppanel-web/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-02-16) # [1.0.0-beta.10](https://github.com/perfect-panel/ppanel-web/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-02-16)
@@ -159,7 +159,7 @@ export default function Page() {
updateConfig('config', { updateConfig('config', {
...data?.config, ...data?.config,
platform_config: { platform_config: {
...data?.platform_config, ...ref.current?.config?.platform_config,
port: value, port: value,
}, },
}) })
@@ -181,7 +181,7 @@ export default function Page() {
updateConfig('config', { updateConfig('config', {
...data?.config, ...data?.config,
platform_config: { platform_config: {
...data?.platform_config, ...ref.current?.config?.platform_config,
ssl: checked, ssl: checked,
}, },
}) })
@@ -202,7 +202,7 @@ export default function Page() {
updateConfig('config', { updateConfig('config', {
...data?.config, ...data?.config,
platform_config: { platform_config: {
...data?.platform_config, ...ref.current?.config?.platform_config,
user: value, user: value,
}, },
}) })
@@ -224,7 +224,7 @@ export default function Page() {
updateConfig('config', { updateConfig('config', {
...data?.config, ...data?.config,
platform_config: { platform_config: {
...data?.platform_config, ...ref.current?.config?.platform_config,
pass: value, pass: value,
}, },
}) })
@@ -245,7 +245,7 @@ export default function Page() {
updateConfig('config', { updateConfig('config', {
...data?.config, ...data?.config,
platform_config: { platform_config: {
...data?.platform_config, ...ref.current?.config?.platform_config,
from: value, from: value,
}, },
}) })
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "ppanel-web", "name": "ppanel-web",
"version": "1.0.0-beta.10", "version": "1.0.0-beta.11",
"private": true, "private": true,
"homepage": "https://github.com/perfect-panel/ppanel-web", "homepage": "https://github.com/perfect-panel/ppanel-web",
"bugs": { "bugs": {