Skip to content

Commit

Permalink
Merge pull request #3040 from emqx/dev/1.10.2
Browse files Browse the repository at this point in the history
Sync code from refs/heads/dev/1.10.2 to enterprise
  • Loading branch information
Kinplemelon authored Nov 6, 2024
2 parents 5201c38 + 35e2dd0 commit 6d1718f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ axios.interceptors.request.use(
if (
!config.keepSpaces &&
['post', 'put'].includes(config.method) &&
typeof config.data === 'object'
_.isPlainObject(config.data)
) {
config.data = trimValues(config.data)
}
Expand Down
1 change: 0 additions & 1 deletion src/hooks/useDashboardVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default (): {
url: 'version',
baseURL: '',
})
debugger
const version = versionContent.match(versionReg)?.[1]
if (version) {
console.log('🔎 Dashboard Version:', version)
Expand Down

0 comments on commit 6d1718f

Please sign in to comment.