Skip to content

Commit

Permalink
Added the version at the bottom of the settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
coltoneshaw committed Aug 15, 2021
1 parent c898f57 commit f573d9f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
7 changes: 7 additions & 0 deletions src/app/Components/Pages/Settings/Settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,11 @@
overflow-x: scroll;
align-self: center;
width: 60%
}

.versionNumber{
width: 100%;
margin: 0 auto 0 auto;
font-weight: 300;
text-align: center;
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"es2021",
"es6"
],
"resolveJsonModule": true,
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
// "lib": [], /* Specify library files to be included in the compilation. */
Expand Down
4 changes: 3 additions & 1 deletion webpack.electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ module.exports = {
target: 'electron-main',
resolve: {
alias: {
['@']: path.resolve(__dirname, 'src')
['@']: path.resolve(__dirname, 'src'),
['#']: path.resolve(__dirname, '.')

},
extensions: ['.tsx', '.ts', '.js'],
},
Expand Down
4 changes: 3 additions & 1 deletion webpack.preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ module.exports = {
target: 'electron-main',
resolve: {
alias: {
['@']: path.resolve(__dirname, 'src')
['@']: path.resolve(__dirname, 'src'),
['#']: path.resolve(__dirname, '.')

},
extensions: ['.tsx', '.ts', '.js'],
},
Expand Down
3 changes: 2 additions & 1 deletion webpack.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ module.exports = {
},
resolve: {
alias: {
['@']: path.resolve(__dirname, 'src')
['@']: path.resolve(__dirname, 'src'),
['#']: path.resolve(__dirname, '.')
},
extensions: ['.tsx', '.ts', '.js'],
},
Expand Down

0 comments on commit f573d9f

Please sign in to comment.