Skip to content

Commit

Permalink
fix FeedBackButton
Browse files Browse the repository at this point in the history
  • Loading branch information
Zwiterrion committed Oct 11, 2024
1 parent fe83a0b commit 6616f02
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion otoroshi/javascript/src/pages/RouteDesigner/Designer.js
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,6 @@ class Designer extends React.Component {
};

componentDidMount() {
console.log("componentDidMount")
this.loadData();
this.injectSaveButton();
this.injectNavbarMenu();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const Informations = forwardRef(
className="ms-2 mb-1"
onPress={saveRoute}
text={isCreation ? `Create ${entityName}` : `Save`}
icon={() => <i className="fas fa-paper-plane" />}
/>
);
}, [value]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ class RouteForms extends React.Component {
<div className="d-flex align-items-center justify-content-end me-3">
<FeedbackButton
text="Update the route"
icon={() => <i className="fas fa-paper-plane" />}
onPress={this.props.saveRoute}
/>
</div>
Expand Down Expand Up @@ -336,7 +335,6 @@ export default class RouteCompositions extends React.Component {
<FeedbackButton
className="ms-2"
text="Save route composition"
icon={() => <i className="fas fa-paper-plane" />}
onPress={this.saveRoute}
/>
);
Expand Down

0 comments on commit 6616f02

Please sign in to comment.