Add db field to settings page

This commit is contained in:
Henry Whitaker
2021-04-11 09:40:30 +01:00
parent 48fbbc3713
commit a962865867
2 changed files with 7 additions and 0 deletions

3
public/js/app.js vendored
View File

@@ -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'

View File

@@ -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'