3 comments (3 comments)0 reactions (0 reactions)1 assignee (1 assignee)JavaScript1,278 forks (1,278 forks)batch import
enhancementfeaturehelp wanted
Repository metrics
- Stars
- 6,239 stars (6,239 stars)
- PR merge metrics
- No merged PRs in 30d (No merged PRs in 30d)
Description
const referElements = this.elements.filter(e => e.uuid !== uuid)
可以改为
const referElements = this.elements.filter(e => e.uuid !== uuid && e.name !== 'lbp-background')
否则会出现无意义的辅助对齐线
Contributor guide
- Research direction
- Locate the `referElements` filter in the codebase and add the condition `e.name !== 'lbp background'` to exclude the background component from alignment guides.
- Tech stack
- javascript
- Domain
- frontend
- Issue type
- Bug
- Prerequisites
- JavaScript