Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix several save-button misplacements in the event and series details #572

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const DetailsExtendedMetadataTab: React.FC<{
{formik.dirty && (
<>
{/* Render buttons for updating metadata */}
<footer style={{ padding: "15px" }}>
<footer>
<button
type="submit"
onClick={() => formik.handleSubmit()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const DetailsMetadataTab: React.FC<{
{formik.dirty && (
<>
{/* Render buttons for updating metadata */}
<footer style={{ padding: "15px" }}>
<footer>
<button
type="submit"
onClick={() => formik.handleSubmit()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ const EventDetailsSchedulingTab = ({
{formik.dirty && (
<>
{/* Render buttons for updating scheduling */}
<footer style={{ padding: "15px" }}>
<footer>
<button
type="submit"
onClick={() => formik.handleSubmit()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ const EventDetailsWorkflowTab = ({
!!workflowConfiguration &&
!!workflowConfiguration.workflowId &&
formik.dirty && (
<footer style={{ padding: "15px" }}>
<footer style={{ padding: "0 15px" }}>
<div className="pull-left">
<button
type="reset"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const SeriesDetailsThemeTab = ({
{formik.dirty && (
<>
{/* Render buttons for updating theme */}
<footer style={{ padding: "15px" }}>
<footer>
<button
type="submit"
onClick={() => formik.handleSubmit()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ const ResourceDetailsAccessPolicyTab : React.FC <{
{!transactions.read_only &&
policyChanged &&
formik.dirty && (
<footer style={{ padding: "15px" }}>
<footer style={{ padding: "0 15px" }}>
<div className="pull-left">
<button
type="reset"
Expand Down
Loading