From 87c990c1645d235c000e283c684fdc933787a7e5 Mon Sep 17 00:00:00 2001 From: Qortal Seth Date: Tue, 21 May 2024 15:17:16 -0600 Subject: [PATCH] Version 1.0 Release Icon on main page changed to one provided by AlphaX CategoryList.tsx can now show label based on selected category for greater clarity on what it means. specific Q-Apps are no longer categories. Instead, an autocomplete textfield lets the user select a specific Q-App. That Q-App/Website's name is stored in the metadescription when published. Max comment length changed from 200 to 10,000. Comment Textfields are wider. Edit Comment modal is a lot wider. Choosing a Q-App automatically selects the Q-Apps category in Home.tsx Byte length of files published in IssueList.tsx and IssueListComponentLevel.tsx only show if a file was published. Icons for each category show in IssueList.tsx, IssueListComponentLevel.tsx, and IssueContent.tsx Added fee library, fees are requested when publishing issues. When editing an issue, it can be changed from unpaid to paid. added modal that shows fee history, used to confirm prices are appropriate. --- .gitignore | 50 ++++++++++---------- src/components/PublishIssue/PublishIssue.tsx | 5 ++ 2 files changed, 30 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 7484bfb..ea45e46 100644 --- a/.gitignore +++ b/.gitignore @@ -1,26 +1,26 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -src/assets/icons/* -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +src/assets/icons/* +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? *.zip \ No newline at end of file diff --git a/src/components/PublishIssue/PublishIssue.tsx b/src/components/PublishIssue/PublishIssue.tsx index 690067a..fcc4ac8 100644 --- a/src/components/PublishIssue/PublishIssue.tsx +++ b/src/components/PublishIssue/PublishIssue.tsx @@ -438,6 +438,11 @@ export const PublishIssue = ({ editId, editContent }: NewCrowdfundProps) => { }} > 0 + ? selectedCategories + : undefined + } categoryData={allCategoryData} ref={categoryListRef} columns={3}