Don't show edit link for locked shapes. (#3457)
Hides the edit link option in the context menu for locked shapes. Fixes [#3308](https://github.com/tldraw/tldraw/issues/3308) ### Change Type <!-- ❗ Please select a 'Scope' label ❗️ --> - [x] `sdk` — Changes the tldraw SDK - [ ] `dotcom` — Changes the tldraw.com web app - [ ] `docs` — Changes to the documentation, examples, or templates. - [ ] `vs code` — Changes to the vscode plugin - [ ] `internal` — Does not affect user-facing stuff <!-- ❗ Please select a 'Type' label ❗️ --> - [x] `bugfix` — Bug fix - [ ] `feature` — New feature - [ ] `improvement` — Improving existing features - [ ] `chore` — Updating dependencies, other boring stuff - [ ] `galaxy brain` — Architectural changes - [ ] `tests` — Changes to any test code - [ ] `tools` — Changes to infrastructure, CI, internal scripts, debugging tools, etc. - [ ] `dunno` — I don't know ### Test Plan 1. Add a link to a shape. 2. Lock it 3. Right click it to open the context menu. 4. You should not see the `Edit link` option - [ ] Unit Tests - [ ] End to end tests ### Release Notes - Hide edit link context menu option for locked shapes.
This commit is contained in:
parent
3ceebc82f8
commit
b979bba37a
1 changed files with 2 additions and 1 deletions
|
@ -176,7 +176,8 @@ export function useHasLinkShapeSelected() {
|
||||||
return !!(
|
return !!(
|
||||||
onlySelectedShape &&
|
onlySelectedShape &&
|
||||||
onlySelectedShape.type !== 'embed' &&
|
onlySelectedShape.type !== 'embed' &&
|
||||||
'url' in onlySelectedShape.props
|
'url' in onlySelectedShape.props &&
|
||||||
|
!onlySelectedShape.isLocked
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
[editor]
|
[editor]
|
||||||
|
|
Loading…
Reference in a new issue