Skip to content

Commit

Permalink
Fix button text.
Browse files Browse the repository at this point in the history
  • Loading branch information
am009 committed May 22, 2024
1 parent de894de commit 4cba093
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions advertizement/Intro1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# First introduction video

- Title:
- 【latexdiff.cn】一键生成pdf,展示latex项目修改
- [latexdiff.cn] Generate a pdf showing the changes of latex projects online!
- publication: Youtube(Chinese and English version) Bilibili (Chinese version)
- advertisement:
- English: Reddit, twitter
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export default function Home() {
label="Old version of zip project downloaded from Overleaf:"
rules={[{ required: true, message: 'Please select old project zip file!' }]}>
<Upload beforeUpload={() => false} maxCount={1} accept='zip,application/zip,application/x-zip,application/x-zip-compressed'>
<Button icon={<UploadOutlined />}>Select New Latex zip project</Button>
<Button icon={<UploadOutlined />}>Select Old Latex zip project</Button>
</Upload>
</Form.Item>
<Form.Item required name="new_zip"
Expand All @@ -287,7 +287,7 @@ export default function Home() {
label="New version of zip project downloaded from Overleaf:"
rules={[{ required: true, message: 'Please select new project zip file!' }]}>
<Upload beforeUpload={() => false} maxCount={1} accept='zip,application/zip,application/x-zip,application/x-zip-compressed'>
<Button icon={<UploadOutlined />}>Select Old Latex zip project</Button>
<Button icon={<UploadOutlined />}>Select New Latex zip project</Button>
</Upload>
</Form.Item>
<Form.Item label="Main tex filename:">
Expand Down

0 comments on commit 4cba093

Please sign in to comment.