refactor(editor): add bulk validation only on HARDSELECT_HOOK; skip SOFTSELECT_HOOK
Build / Build-and-ng-test (pull_request) Failing after 17m35s
Build / Build-and-test-development (pull_request) Has been skipped
Lighthouse Checks / lighthouse (pull_request) Failing after 32m35s

This commit is contained in:
s
2026-05-26 21:57:30 +02:00
parent 11ee49a57a
commit 1d04f4a42c
+1 -6
View File
@@ -1100,12 +1100,7 @@ export class EditorComponent implements OnInit, AfterViewInit, OnDestroy {
for (let c = range.startCol; c <= range.endCol; c++) {
rows.add(r)
const colKey = hot.colToProp(c) as string
if (
this.dcValidator?.hasDqRules(colKey, [
'SOFTSELECT_HOOK',
'HARDSELECT_HOOK'
])
) {
if (this.dcValidator?.hasDqRules(colKey, ['HARDSELECT_HOOK'])) {
hookCols.add(colKey)
hookTargets.push({ r, c })
}