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

Add result page. #239

Merged
merged 4 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
Binary file added frontend/public/image/png/Component.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/public/image/svg/DetectedFileListRec.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions frontend/public/image/svg/ListLine.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/public/image/svg/PieChartLine.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/public/image/svg/ResultInfoLine.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import Home from './pages/Home';
import Login from './pages/Login';
import User from './pages/User';
import History from './pages/History';
import Result from './pages/Result';

axios.defaults.baseURL = '/api/v1/web';
function App() {
Expand All @@ -24,6 +25,7 @@ function App() {
<Route path="/user/login" element={<Login />} />
<Route path="/user/setting" element={<User />} />
<Route path="/history/:type/:name" element={<History />} />
<Route path="/result/:pull_request_id" element={<Result />} />
</Routes>
</div>
</BrowserRouter>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/css/History_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* found in the LICENSE file.
*/

.history-send {
.history-send {
background-color: #ffffff;
display: flex;
flex-direction: row;
Expand Down
Loading
Loading