Skip to content

Commit

Permalink
Add db field to settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywhitaker3 committed Apr 11, 2021
1 parent 48fbbc3 commit a962865
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -148424,6 +148424,9 @@ var SettingsIndex = /*#__PURE__*/function (_Component) {
}, {
obj: data.influx_db_port,
type: 'number'
}, {
obj: data.influx_db_database,
type: 'text'
}, {
obj: data.influx_db_username,
type: 'text'
Expand Down
4 changes: 4 additions & 0 deletions resources/js/components/Settings/SettingsIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ export default class SettingsIndex extends Component {
obj: data.influx_db_port,
type: 'number'
},
{
obj: data.influx_db_database,
type: 'text'
},
{
obj: data.influx_db_username,
type: 'text'
Expand Down

0 comments on commit a962865

Please sign in to comment.