File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pgadmin/static/js/components Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export function usePgMenuGroup() {
120120 const prevMenuOpenIdRef = useRef ( null ) ;
121121
122122 const toggleMenu = React . useCallback ( ( e ) => {
123- const name = e . currentTarget ?. getAttribute ( 'name' ) || e . currentTarget ?. name ;
123+ const name = e . currentTarget ?. getAttribute ?. ( 'name' ) || e . currentTarget ?. name ;
124124 setOpenMenuName ( ( ) => {
125125 return prevMenuOpenIdRef . current == name ? null : name ;
126126 } ) ;
Original file line number Diff line number Diff line change 1818
1919# Application version number components
2020APP_RELEASE = 9
21- APP_REVISION = 5
21+ APP_REVISION = 6
2222
2323# Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string
2424# for GA releases.
2727# Numeric application version for upgrade checks. Should be in the format:
2828# [X]XYYZZ, where X is the release version, Y is the revision, with a leading
2929# zero if needed, and Z represents the suffix, with a leading zero if needed
30- APP_VERSION_INT = 90500
30+ APP_VERSION_INT = 90600
3131
3232# DO NOT CHANGE!
3333# The application version string, constructed from the components
You can’t perform that action at this time.
0 commit comments