Skip to content

Commit

Permalink
Pushing current state.
Browse files Browse the repository at this point in the history
  • Loading branch information
lennartkoopmann committed May 7, 2022
1 parent 88d9944 commit a950e45
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions web-interface/src/components/taps/TapDetailsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import numeral from "numeral";
import byteAverageToMbit from "../../util/Tools";
import Buses from "./Buses";
import TapInactiveWarning from "./TapInactiveWarning";
import CaptureConfiguration from "./capture/CaptureConfiguration";

const tapsService = new TapsService();

Expand Down Expand Up @@ -117,6 +118,17 @@ function TapDetailsPage() {
</div>
</div>

<div className="row mt-3">
<div className="col-md-12">
<div className="card">
<div className="card-body">
<h3>Capture Configuration</h3>

<CaptureConfiguration />
</div>
</div>
</div>
</div>

<div className="row mt-3">
<div className="col-md-12">
Expand Down
2 changes: 2 additions & 0 deletions web-interface/src/components/taps/TapInactiveWarning.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ function TapInactiveWarning(props) {
offline. Some data you see on this page is likely outdated.
</div>
)
} else {
return null;
}

}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

function CaptureConfiguration(props) {

return null;

}

export default CaptureConfiguration;

0 comments on commit a950e45

Please sign in to comment.