[Occurrence condition]
When accessing "Matter list" screen of IM-Workflow in Google Chrome 80, the following events might occur.
* Horizontal scroll is not displayed in table display mode "Display with horizontal scroll"
* Setting icons, etc. do not follow the window when the window size is changed in the table display mode "Hide overflowed list item and confirm with folding"
* Display of the narrowing condition collapses
[Cause]
The interpretation of fr units used in GridLayout in Chrome is changed in the current investigation phase.
The Chrome Canary, a build for developers, however, seems to have changed again to the behavior of Chrome 79.
[Handling method]
%RESIN-HOME%\webapps\imart\im_workflow\spa\bundles\js\matters.bundle.js
You can switch to a similar 79 behavior in Google Chrome 80 by replacing the following (2 places each, 4 places in total) in the file above.
Before replacement: 1fr minmax(22vw, 550px)
After replacement: minmax(0,1fr) minmax(22vw, 550px)
Before replacement: 1fr minmax(20vw, 500px)
After replacement: minmax(0,1fr) minmax(20vw, 500px)
*The event above was resolved in the latest version Chrome as of 19/02/2020.
FAQID:1021