Konstantin
Konstantin
Can verify that the behaviour persists on Inkline 3.1.8.
The behaviour is most likely related to `inputValue` [watcher](https://github.com/inkline/inkline/blob/9cda27b34fa4c886680dab36b34b5358ddccdbee/src/components/ISelect/script.ts#L409) that does not take into account `null`.
To resolve this issue there is a temporary workaround, not a nice-looking solution but works: - Wrap state reset in async function - Disable select before resetting state - Call...
@chfw sorry for ping and thanks for your amazing work! This line [here](https://github.com/pyexcel/pyexcel-xlsx/blob/dev/pyexcel_xlsx/xlsxr.py#L72): `for ranges in sheet.merged_cells.ranges[:]:` Should probably be replaced with: `for ranges in list(sheet.merged_cells.ranges)[:]:` For everyone who is...