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 lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/**"
],
"version": "1.45.3"
"version": "1.44.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { DefaultLogger as winston } from '@dracul/logger-backend'
export const cors = async (req, res, next) => {
try {
winston.debug(`[CORS] req.headers.origin: '${req.headers.origin}'`)
winston.debug(`[CORS] process.env.APP_WEB_URL: '${process.env.APP_WEB_URL}'`)
winston.debug(`[CORS] process.env.APP_API_URL: '${process.env.APP_API_URL}'`)
winston.debug(`[CORS] req.headers.origin === process.env.APP_WEB_URL: ${req.headers.origin === process.env.APP_WEB_URL}`)
winston.debug(`[CORS] req.headers.origin === process.env.APP_API_URL: ${req.headers.origin === process.env.APP_API_URL}`)

Expand Down
4 changes: 2 additions & 2 deletions packages/audit/audit-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dracul/audit-frontend",
"version": "1.45.0",
"version": "1.44.0",
"description": "Audit frontend",
"author": "Cristian Incarnato <cristian.cdi@gmail.com>",
"publishConfig": {
Expand All @@ -13,7 +13,7 @@
"main": "./src/index.js",
"dependencies": {
"@dracul/common-frontend": "^1.44.0",
"@dracul/dayjs-frontend": "^1.45.0"
"@dracul/dayjs-frontend": "^1.44.0"
},
"devDependencies": {
"jest": "^29.7.0",
Expand Down
4 changes: 0 additions & 4 deletions packages/audit/audit-frontend/src/pages/AuditPage/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,6 @@ export default {
return actionColors[action]
},
getDetailsText(audit){

console.log(`audit: ${JSON.stringify(audit, null, 2)}`)
console.log(`typeof resource data: ${typeof audit.resourceData}`)

if (audit && audit.resourceData && audit.resourceData !== '' && typeof audit.resourceData === 'string' && audit.resourceData !== null && audit.resourceData !== undefined) {
try {
audit.resourceData = JSON.parse(audit.resourceData)
Expand Down
4 changes: 2 additions & 2 deletions packages/customize/customize-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dracul/customize-frontend",
"version": "1.45.0",
"version": "1.44.0",
"description": "vue custom logo, custom theme, custom colors, i18n configuration}",
"main": "./src/index.js",
"publishConfig": {
Expand All @@ -23,7 +23,7 @@
"gitHead": "f747e67912f903a50cd8821361dffad4cd99c1b1",
"dependencies": {
"@dracul/common-frontend": "^1.44.0",
"@dracul/user-frontend": "^1.45.0"
"@dracul/user-frontend": "^1.44.0"
},
"peerDependencies": {
"material-design-icons-iconfont": "^6.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dayjs/dayjs-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dracul/dayjs-frontend",
"version": "1.45.0",
"version": "1.44.0",
"description": "vue dayjs utils",
"main": "./src/index.js",
"publishConfig": {
Expand Down
Loading