fix: Time Column on Generic X-axis (#23021)

This commit is contained in:
Michael S. Molina
2023-02-10 13:33:07 -05:00
committed by GitHub
parent 85f07798bf
commit 464ddee4b4
4 changed files with 97 additions and 56 deletions

View File

@@ -198,7 +198,8 @@ class SaveModal extends React.Component<SaveModalProps, SaveModalState> {
);
}
const { url_params, ...formData } = this.props.form_data || {};
const formData = this.props.form_data || {};
delete formData.url_params;
let dashboard: DashboardGetResponse | null = null;
if (this.state.newDashboardName || this.state.saveToDashboardId) {