Skip to content

Commit

Permalink
chore: add safe attribute to input element
Browse files Browse the repository at this point in the history
  • Loading branch information
C4illin committed Sep 20, 2024
1 parent 60ba7c9 commit 5b1703d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
24 changes: 17 additions & 7 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,11 @@ const app = new Elysia({
style={{
borderColor: "gray",
padding: "2px",
}}>
}}
>
<header
style={{ fontSize: "20px", fontWeight: "bold" }}>
style={{ fontSize: "20px", fontWeight: "bold" }}
safe>
{converter}
</header>

Expand All @@ -567,7 +569,9 @@ const app = new Elysia({
data-target={target}
data-converter={converter}
style={{ fontSize: "15px", padding: "5px" }}
type="button">
type="button"
safe
>
{target}
</button>
))}
Expand Down Expand Up @@ -638,8 +642,9 @@ const app = new Elysia({
style={{
borderColor: "gray",
padding: "2px",
}}>
<header style={{ fontSize: "20px", fontWeight: "bold" }}>
}}
>
<header style={{ fontSize: "20px", fontWeight: "bold" }} safe>
{converter}
</header>

Expand All @@ -661,7 +666,9 @@ const app = new Elysia({
data-target={target}
data-converter={converter}
style={{ fontSize: "15px", padding: "5px" }}
type="button">
type="button"
safe
>
{target}
</button>
))}
Expand Down Expand Up @@ -828,7 +835,10 @@ const app = new Elysia({
const fileTypeOrig = fileName.split(".").pop() ?? "";
const fileType = normalizeFiletype(fileTypeOrig);
const newFileExt = normalizeOutputFiletype(convertTo);
const newFileName = fileName.replace(new RegExp(`${fileTypeOrig}(?!.*${fileTypeOrig})`), newFileExt);
const newFileName = fileName.replace(
new RegExp(`${fileTypeOrig}(?!.*${fileTypeOrig})`),
newFileExt,
);
const targetPath = `${userOutputDir}${newFileName}`;

const result = await mainConverter(
Expand Down
2 changes: 1 addition & 1 deletion src/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ div.icon {
}

button[type="submit"] {
width: 50%
width: 50%;
}

div.center {
Expand Down

0 comments on commit 5b1703d

Please sign in to comment.