Skip to content

Commit

Permalink
fix: file name is not visible in form for local development
Browse files Browse the repository at this point in the history
  • Loading branch information
prafull-opensignlabs authored Feb 28, 2024
1 parent 58cd049 commit 780c3f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/OpenSign/src/routes/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ const Forms = (props) => {
<div className="flex gap-2 justify-center items-center">
<div className="flex justify-between items-center px-2 py-2 w-full font-bold rounded border-[1px] border-[#ccc] text-gray-500 bg-white text-[13px]">
<div className="break-all">
file selected : {fileupload?.split("/")[3]?.split("_")[1]}
file selected : {fileupload?.split("/")?.pop()?.split("_")[1]}
</div>
<div
onClick={() => {
Expand Down

0 comments on commit 780c3f5

Please sign in to comment.