You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To replace the redirection of the Wazuh dashboard header button from the home app to the wazuh app, you could use the following:
In the Wazuh dashboard menu, there is a button that says Home, that would also be being modified so that it does not redirect to the home app but to wazuh:
# Replace the redirection to `home` in the header logo
sed -i "s'/app/home'/app/wazuh'g" src/core/target/public/core.entry.js
# Replace others redirections to `home`
sed -i 's/navigateToApp("home")/navigateToApp("wazuh")/g' src/core/target/public/core.entry.js
# Build the compressed files
gzip -c src/core/target/public/core.entry.js > src/core/target/public/core.entry.js.gz
brotli -c src/core/target/public/core.entry.js > src/core/target/public/core.entry.js.br
The text was updated successfully, but these errors were encountered:
To replace the redirection of the Wazuh dashboard header button from the home app to the wazuh app, you could use the following:
In the Wazuh dashboard menu, there is a button that says Home, that would also be being modified so that it does not redirect to the home app but to wazuh:
The text was updated successfully, but these errors were encountered: