mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-18 21:17:59 +00:00
Fixed infinite loop bug when a document in the find view has been double clicked
This commit is contained in:
parent
6163288dfc
commit
8a0d305d7b
@ -1,6 +1,7 @@
|
|||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
* `79d42fd` Added some external links related to Rolens to the application menu.
|
* Added some external links related to Rolens to the application menu.
|
||||||
|
* Fix an infinite loop bug when a document in the find view has been double clicked.
|
||||||
|
|
||||||
## [v0.1.0](https://github.com/garraflavatra/rolens/releases/tag/v0.1.0)
|
## [v0.1.0](https://github.com/garraflavatra/rolens/releases/tag/v0.1.0)
|
||||||
|
|
||||||
|
@ -256,10 +256,10 @@
|
|||||||
|
|
||||||
<ExportInfo on:openViewConfig bind:collection bind:info={exportInfo} />
|
<ExportInfo on:openViewConfig bind:collection bind:info={exportInfo} />
|
||||||
|
|
||||||
{#key objectViewerData}
|
{#if objectViewerData}
|
||||||
<!-- @todo Implement save -->
|
<!-- @todo Implement save -->
|
||||||
<ObjectViewer bind:data={objectViewerData} saveable />
|
<ObjectViewer bind:data={objectViewerData} saveable />
|
||||||
{/key}
|
{/if}
|
||||||
|
|
||||||
<datalist id="limits">
|
<datalist id="limits">
|
||||||
{#each [ 1, 5, 10, 25, 50, 100, 200 ] as value}
|
{#each [ 1, 5, 10, 25, 50, 100, 200 ] as value}
|
||||||
|
Loading…
Reference in New Issue
Block a user