Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into additional-doc-strings
Browse files Browse the repository at this point in the history
daniele-mng authored Jan 15, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents baeba3b + b623e84 commit 13fca8a
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/web/pages/usersettings/usersettingspage.jsx
Original file line number Diff line number Diff line change
@@ -823,7 +823,10 @@ UserSettings.propTypes = {
credentials: PropTypes.array,
credentialsFilter: PropTypes.object,
cveFilter: PropTypes.object,
userInterfaceDateFormat: PropTypes.oneOf(['wdmy', 'wmdy', SYSTEM_DEFAULT]),
userInterfaceDateFormat: PropTypes.shape({
comment: PropTypes.string,
value: PropTypes.oneOf(['wdmy', 'wmdy', SYSTEM_DEFAULT]),
}),
defaultAlert: PropTypes.object,
defaultEsxiCredential: PropTypes.object,
defaultOpenvasScanConfig: PropTypes.object,
@@ -883,7 +886,10 @@ UserSettings.propTypes = {
tasksFilter: PropTypes.object,
ticketsFilter: PropTypes.object,
timezone: PropTypes.string,
userInterfaceTimeFormat: PropTypes.oneOf([12, 24, SYSTEM_DEFAULT]),
userInterfaceTimeFormat: PropTypes.shape({
comment: PropTypes.string,
value: PropTypes.oneOf([12, 24, SYSTEM_DEFAULT]),
}),
tlsCertificatesFilter: PropTypes.object,
userInterfaceLanguage: PropTypes.object,
usersFilter: PropTypes.object,
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -50,6 +50,7 @@ export default defineConfig({
},
server: {
port: 8080,
host: '127.0.0.1',
},
build: {
outDir: 'build',

0 comments on commit 13fca8a

Please sign in to comment.