Skip to content

Commit 5615416

Browse files
committed
Update Config.react.js
1 parent 5f652a9 commit 5615416

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dashboard/Data/Config/Config.react.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class Config extends TableView {
275275
async saveParam({ name, value, type, masterKeyOnly, override }) {
276276
try {
277277
this.setState({ loading: true });
278-
278+
279279
const fetchedParams = this.props.config.data.get('params');
280280
const currentValue = fetchedParams.get(name);
281281
await this.props.config.dispatch(ActionTypes.FETCH);
@@ -313,12 +313,12 @@ class Config extends TableView {
313313
}
314314

315315
this.setState({ modalOpen: false });
316-
316+
317317
// Update config history in localStorage
318318
const limit = this.context.cloudConfigHistoryLimit;
319319
const applicationId = this.context.applicationId;
320320
let transformedValue = value;
321-
321+
322322
if (type === 'Date') {
323323
transformedValue = { __type: 'Date', iso: value };
324324
}

0 commit comments

Comments
 (0)