Skip to content

fix build npm #2

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion resources/js/Pages/Auth/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export default function Login({ status, canResetPassword }) {
<TextInput
id="password"
type="password"
id="password"
name="password"
value={data.password}
className="mt-1 block w-full"
Expand Down
2 changes: 0 additions & 2 deletions resources/js/Pages/Auth/ResetPassword.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export default function ResetPassword({ token, email }) {
<TextInput
id="email"
type="email"
id="email"
name="email"
value={data.email}
className="mt-1 block w-full"
Expand All @@ -54,7 +53,6 @@ export default function ResetPassword({ token, email }) {
<TextInput
id="password"
type="password"
id="password"
name="password"
value={data.password}
className="mt-1 block w-full"
Expand Down
7 changes: 7 additions & 0 deletions resources/js/constants.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,10 @@ export const TASK_PRIORITY_TEXT_MAP = {
medium: "Medium",
high: "High",
};
export const USER_STATUS_CLASS_MAP = {
// define your status class map here
};

export const USER_STATUS_TEXT_MAP = {
// define your status text map here
};