File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def index():
7676 info ['version' ] = config .APP_VERSION
7777 info ['admin' ] = admin
7878 info ['current_user' ] = current_user .email
79- info ['python_version' ] = sys .version
79+ info ['python_version' ] = sys .version . split ( " " , maxsplit = 1 )[ 0 ]
8080
8181 if admin :
8282 settings = ""
Original file line number Diff line number Diff line change @@ -51,15 +51,15 @@ export default function AboutComponent() {
5151 </ Grid >
5252 < Grid container spacing = { 0 } style = { { marginBottom : '8px' } } >
5353 < Grid item lg = { 3 } md = { 3 } sm = { 3 } xs = { 12 } >
54- < InputLabel style = { { fontWeight : 'bold' } } > { gettext ( 'Commit: ' ) } </ InputLabel >
54+ < InputLabel style = { { fontWeight : 'bold' } } > { gettext ( 'Commit' ) } </ InputLabel >
5555 </ Grid >
5656 < Grid item lg = { 9 } md = { 9 } sm = { 9 } xs = { 12 } >
5757 < InputLabel > { aboutData . commit_hash } </ InputLabel >
5858 </ Grid >
5959 </ Grid >
6060 < Grid container spacing = { 0 } style = { { marginBottom : '8px' } } >
6161 < Grid item lg = { 3 } md = { 3 } sm = { 3 } xs = { 12 } >
62- < InputLabel style = { { fontWeight : 'bold' } } > { gettext ( 'Python Version: ' ) } </ InputLabel >
62+ < InputLabel style = { { fontWeight : 'bold' } } > { gettext ( 'Python Version' ) } </ InputLabel >
6363 </ Grid >
6464 < Grid item lg = { 9 } md = { 9 } sm = { 9 } xs = { 12 } >
6565 < InputLabel > { aboutData . python_version } </ InputLabel >
You can’t perform that action at this time.
0 commit comments