Skip to content

Don't categorize when searching in report fields selection page#37583

Merged
MonilBhavsar merged 17 commits into
Expensify:mainfrom
bernhardoj:fix/36683-dont-categorized-report-field-when-searching
Mar 22, 2024
Merged

Don't categorize when searching in report fields selection page#37583
MonilBhavsar merged 17 commits into
Expensify:mainfrom
bernhardoj:fix/36683-dont-categorized-report-field-when-searching

Conversation

@bernhardoj

@bernhardoj bernhardoj commented Mar 1, 2024

Copy link
Copy Markdown
Contributor

Details

We don't want to categorize the search result when searching in report fields selection page to make it consistent with other pages.

Fixed Issues

$ #36683
PROPOSAL: #36683 (comment)

Tests

Same as QA Steps

  • Verify that no errors appear in the JS console

Offline tests

Same as QA Steps

QA Steps

Precondition:

  • User is an employee of Collect workspace
  • The Collect workspace has dropdown field set up in "Report and Invoice Fields" on Old Dot
  1. Go to a collect workspace chat.
  2. Create a request.
  3. Go to the expense report.
  4. Click on the report field with the selection list set up from Old Dot
  5. Select an item.
  6. Click on the report field again.
  7. Search for a term that will return results in the Recent and All sections
  8. Verify the search results are not categorized in Recent and All sections
  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Screen.Recording.2024-03-21.at.23.17.11.mov
Android: mWeb Chrome
Screen.Recording.2024-03-21.at.23.20.18.mov
iOS: Native
Screen.Recording.2024-03-21.at.23.17.55.mov
iOS: mWeb Safari
Screen.Recording.2024-03-21.at.23.15.10.mov
MacOS: Chrome / Safari
Screen.Recording.2024-03-21.at.23.12.39.mov
MacOS: Desktop
Screen.Recording.2024-03-21.at.23.13.48.mov

@bernhardoj bernhardoj requested a review from a team as a code owner March 1, 2024 05:36
@melvin-bot melvin-bot Bot requested review from hungvu193 and removed request for a team March 1, 2024 05:37
@melvin-bot

melvin-bot Bot commented Mar 1, 2024

Copy link
Copy Markdown

@hungvu193 Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@hungvu193

hungvu193 commented Mar 3, 2024

Copy link
Copy Markdown
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
android.mov
Android: mWeb Chrome
android.mWeb.chrome.mov
iOS: Native
ios.mov
iOS: mWeb Safari
mwebSafari.mov
MacOS: Chrome / Safari
chrome.mov
MacOS: Desktop
desktop.mov

@hungvu193 hungvu193 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes look good and test well!

@melvin-bot melvin-bot Bot requested a review from MonilBhavsar March 3, 2024 11:32
Comment on lines +80 to +81
shouldShow: restOfOptions.length > 0,
data: restOfOptions.map((option) => ({

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Under `all' we should display everything.
Please check behavior for categories and tags

Screenshot 2024-03-04 at 11 23 24 AM

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, if we show it on both category, there will be 2 checkmarks.

image

For category, we have a selected section and it's not included in either Recent or All.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bernhardoj I think we should filter the selected option like we did with category.

const filteredCategories = enabledCategories.filter((category) => !selectedOptionNames.includes(category.name));

@hungvu193 hungvu193 Mar 4, 2024

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So the All section will include all the options except the selected option, that's the expected right? @MonilBhavsar

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is how it will looks if we follow category page.

image

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, "All" section includes all options except selected

Screenshot 2024-03-04 at 2 31 25 PM

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

@hungvu193

Copy link
Copy Markdown
Contributor

@bernhardoj I'm facing this crash while trying to create new expense, can you check it?

Screen.Recording.2024-03-04.at.16.38.38.mov

Steps to reproduce:

  1. Go to the workspace that you've created new expense.
  2. Create another expense
  3. Click on the report field.

@bernhardoj

Copy link
Copy Markdown
Contributor Author

Can't reproduce it. Can you share the console error in text? I can only see invalid prop console error in your video.

@hungvu193

Copy link
Copy Markdown
Contributor

Here's the console, but let me re-create another collect workspace and try again.
Screenshot 2024-03-04 at 16 48 29

@MonilBhavsar

Copy link
Copy Markdown
Contributor

Also, this code is wrong, no?

const reportField = report?.reportFields?.[route.params.fieldID] ?? policyReportFields?.[route.params.fieldID];

Looks like fieldIDs are stored as expensify_field_id_PROJECT and in url it is only field_id_PROJECT
So i think it should be

const reportField = report?.reportFields?.['expensify_' + route.params.fieldID] ?? policyReportFields?.['expensify_' + route.params.fieldID];

@hungvu193

Copy link
Copy Markdown
Contributor

I can't reproduce the crash but If I create a fresh collect workspace, and request the expense, when I click the report field without anything selected it will show "Hidden", is this expected?

Screen.Recording.2024-03-04.at.16.56.42.mov

Also if I delete the selected option and select another options, "Recent" and "All" will also show even they're empty.

Screen.Recording.2024-03-04.at.17.01.17.mov

@bernhardoj

Copy link
Copy Markdown
Contributor Author

Looks like fieldIDs are stored as expensify_field_id_PROJECT and in url it is only field_id_PROJECT
So i think it should be

Yeah, looks like there are some recent BE changes. I see not found page when accessing it.

@hungvu193 fixed both issues. The selected value is empty, so hidden is shown

const title = fullTitle || translate('common.hidden');

The second issue, is the condition to show the recent section title doesn't exclude the selected value yet.

@hungvu193

Copy link
Copy Markdown
Contributor

Looks like fieldIDs are stored as expensify_field_id_PROJECT and in url it is only field_id_PROJECT
So i think it should be

Yeah, looks like there are some recent BE changes. I see not found page when accessing it.

@hungvu193 fixed both issues. The selected value is empty, so hidden is shown

const title = fullTitle || translate('common.hidden');

The second issue, is the condition to show the recent section title doesn't exclude the selected value yet.

I can confirm these issues are fixed 👍

@MonilBhavsar

Copy link
Copy Markdown
Contributor

Bug?

I have a2 selected(see background) but checked option is a1

Screenshot 2024-03-04 at 8 24 26 PM

@bernhardoj

Copy link
Copy Markdown
Contributor Author

@MonilBhavsar Do you have any reliable repro steps? I can't reproduce it

image

@MonilBhavsar

Copy link
Copy Markdown
Contributor

No specific rules, but is not related to this PR

Comment on lines +71 to +72
const filteredRecentlyUsedOptions = recentlyUsedOptions.filter((option) => option !== selectedValue);
const filteredFieldOptions = fieldOptions.filter((option) => option !== selectedValue);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's declared them below when they're used?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

{
const selectedValue = fieldValue;

setHeaderMessage(!fieldOptions.length && !recentlyUsedOptions.length ? translate('common.noResultsFound') : '');

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why we need this block and that too outside of if (searchValue) {} block

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To show the no result found text. I'm not sure if I answer your question 😆

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't that case handled when search value is present and on L51 above?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can access a report field without a list, so I think we still need it for now, except we hide the report field if it doesn't have a list.
image

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MonilBhavsar Can you confirm the expected behavior when the report field is empty? We should still show the report field, allow user to click on it and it will show no result found (like current code) or we should remove or disable report field when it's empty?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, sorry if it was unclear. Let's not include those changes in this PR.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So let remove the line 67 and other changes will be in the next PR right?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we can remove that line 67 👍

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool!

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@thienlnam

Copy link
Copy Markdown
Contributor

As a note, we're currently making some changes to what the reportFields return in the BE. The FE changes are being updated in #36170

@MonilBhavsar

Copy link
Copy Markdown
Contributor

As a note, we're currently making some changes to what the reportFields return in the BE. The FE changes are being updated in #36170

Thanks! Those changes looks unrelated to this PR, so we should still continue with this PR

@bernhardoj

Copy link
Copy Markdown
Contributor Author

The not found issue is fixed, but I found another issue after we remove the line 67.

Screen.Recording.2024-03-21.at.15.30.02.mov

Do we want to readd it back but we willl just set it to empty string,

const [headerMessage, setHeaderMessage] = useState('');
if (searchValue) {
    setHeaderMessage(!filteredOptions.length ? translate('common.noResultsFound') : '');
    ...
    return;
}

setHeaderMessage('');

or we can do it like this:

const headerMessage = searchValue && sections[0].data.length === 0 ? translate('common.noResultsFound') : '';

@hungvu193

@hungvu193

Copy link
Copy Markdown
Contributor

The not found issue is fixed, but I found another issue after we remove the line 67.

Screen.Recording.2024-03-21.at.15.30.02.mov
Do we want to readd it back but we willl just set it to empty string,

const [headerMessage, setHeaderMessage] = useState('');
if (searchValue) {
    setHeaderMessage(!filteredOptions.length ? translate('common.noResultsFound') : '');
    ...
    return;
}

setHeaderMessage('');

or we can do it like this:

const headerMessage = searchValue && sections[0].data.length === 0 ? translate('common.noResultsFound') : '';

I see. I prefer the second option (just make sure you use useMemo).
Or we can combine both like this:

const {headerMessage, sections} = useMemo(() => {}, [])

@bernhardoj

Copy link
Copy Markdown
Contributor Author

Updated based on your suggestion

@hungvu193 hungvu193 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bernhardoj Just one small change. Also please remove the HOLD from PR's title.


const {sections, headerMessage} = useMemo(() => {
let newHeaderMessage = '';
const newSections = [];

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add the type definition of newSections here?

@bernhardoj bernhardoj changed the title [HOLD #36553] Don't categorize when searching in report fields selection page Don't categorize when searching in report fields selection page Mar 21, 2024
@bernhardoj

Copy link
Copy Markdown
Contributor Author

Done.

@melvin-bot melvin-bot Bot requested a review from MonilBhavsar March 21, 2024 13:29
@MonilBhavsar

Copy link
Copy Markdown
Contributor

@hungvu193 @bernhardoj Just making sure this checklist item was followed as all screenshots are old

If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

@hungvu193

Copy link
Copy Markdown
Contributor

@hungvu193 @bernhardoj Just making sure this checklist item was followed as all screenshots are old

If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

My bad 🤦 , I forgot we changed expected behavior after few discussions. I'm updating them now.

@hungvu193

Copy link
Copy Markdown
Contributor

Checklist updated

@bernhardoj

Copy link
Copy Markdown
Contributor Author

Updated

@MonilBhavsar

Copy link
Copy Markdown
Contributor

Thanks! Performance tests are failing. You might want to merge main?

@hungvu193

Copy link
Copy Markdown
Contributor

Thanks! Performance tests are failing. You might want to merge main?

All check passed! All yours @MonilBhavsar

@MonilBhavsar MonilBhavsar left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks all!

@MonilBhavsar MonilBhavsar merged commit 408a894 into Expensify:main Mar 22, 2024
@melvin-bot melvin-bot Bot added the Emergency label Mar 22, 2024
@melvin-bot

melvin-bot Bot commented Mar 22, 2024

Copy link
Copy Markdown

@MonilBhavsar looks like this was merged without a test passing. Please add a note explaining why this was done and remove the Emergency label if this is not an emergency.

@MonilBhavsar

Copy link
Copy Markdown
Contributor

All tests we passing!

Screenshot 2024-03-22 at 2 24 02 PM

@OSBotify

Copy link
Copy Markdown
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/MonilBhavsar in version: 1.4.56-0 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/yuwenmemon in version: 1.4.56-8 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants