mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
Catches isDisposed bug with rightpanel linkInfo (#676)
* Catches isDisposed bug with rightpanel linkInfo Would happen when deleting srcSection of a link with rightpanel open to the linking tab
This commit is contained in:
parent
bc6f550471
commit
8fd6bd1afb
@ -504,6 +504,11 @@ export class RightPanel extends Disposable {
|
|||||||
const srcSec = use(tgtSec.linkSrcSection); //might be the empty section
|
const srcSec = use(tgtSec.linkSrcSection); //might be the empty section
|
||||||
const srcCol = use(tgtSec.linkSrcCol);
|
const srcCol = use(tgtSec.linkSrcCol);
|
||||||
const srcColId = use(use(tgtSec.linkSrcCol).colId); // if srcCol is the empty col, colId will be undefined
|
const srcColId = use(use(tgtSec.linkSrcCol).colId); // if srcCol is the empty col, colId will be undefined
|
||||||
|
|
||||||
|
if (srcSec.isDisposed()) { // can happen when deleting srcSection with rightpanel open
|
||||||
|
return cssLinkInfoPanel("");
|
||||||
|
}
|
||||||
|
|
||||||
//const tgtColId = use(use(tgtSec.linkTargetCol).colId);
|
//const tgtColId = use(use(tgtSec.linkTargetCol).colId);
|
||||||
const srcTable = use(srcSec.table);
|
const srcTable = use(srcSec.table);
|
||||||
const tgtTable = use(tgtSec.table);
|
const tgtTable = use(tgtSec.table);
|
||||||
@ -616,6 +621,11 @@ export class RightPanel extends Disposable {
|
|||||||
// but the fact that it's all observables makes that trickier to do correctly, so let's leave it here
|
// but the fact that it's all observables makes that trickier to do correctly, so let's leave it here
|
||||||
const srcSec = use(activeSection.linkSrcSection); //might be the empty section
|
const srcSec = use(activeSection.linkSrcSection); //might be the empty section
|
||||||
const tgtSec = activeSection;
|
const tgtSec = activeSection;
|
||||||
|
|
||||||
|
if (srcSec.isDisposed()) { // can happen when deleting srcSection with rightpanel open
|
||||||
|
return cssRow("");
|
||||||
|
}
|
||||||
|
|
||||||
const srcCol = use(activeSection.linkSrcCol); // might be the empty column
|
const srcCol = use(activeSection.linkSrcCol); // might be the empty column
|
||||||
const tgtCol = use(activeSection.linkTargetCol);
|
const tgtCol = use(activeSection.linkTargetCol);
|
||||||
// columns might be the empty column
|
// columns might be the empty column
|
||||||
|
Loading…
Reference in New Issue
Block a user