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

FavIcon #91

Merged
merged 3 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/jiraIcon.jpeg" />

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

Expand Down
Binary file added public/jiraIcon.jpeg
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 src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ function App() {

return (
<div className="App">


<BrowserRouter basename="/JIRA-CLONE"> {/* Adjust the basename */}
<Routes>
<Route path="/" element={<LoginPage />} />
Expand Down
9 changes: 9 additions & 0 deletions src/components/CreateIssue/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@ const PopupScreen = ({ open, onClose }) => {
payload: formData, // Add the form data as payload
});
console.log("Form data:", formData);
setFormData({
Project: "",
Issue: "",
Status: "",
Labels: "",
message: "",
summary: "",
Components: "",
});
onClose();
};

Expand Down
1 change: 1 addition & 0 deletions src/pages/loginpage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,4 @@ const LoginPage = () => {
};

export default LoginPage;