idlize
31 строка · 1.3 Кб
1From 64ec413c299984e71c1892339e83e47f07075494 Mon Sep 17 00:00:00 2001
2From: Dmitrii <naumov.dmitrii@huawei.com>
3Date: Fri, 15 Dec 2023 12:18:00 +0300
4Subject: [PATCH] inner-fix-args
5
6---
7.../render_decorator/@builder/handleCustomBuilder.ts | 4 ++--
81 file changed, 2 insertions(+), 2 deletions(-)
9
10diff --git a/compiler/test/utForPartialUpdate/render_decorator/@builder/handleCustomBuilder.ts b/compiler/test/utForPartialUpdate/render_decorator/@builder/handleCustomBuilder.ts
11index 8d63a329..52642a88 100644
12--- a/compiler/test/utForPartialUpdate/render_decorator/@builder/handleCustomBuilder.ts
13+++ b/compiler/test/utForPartialUpdate/render_decorator/@builder/handleCustomBuilder.ts
14@@ -45,13 +45,13 @@ struct Index {
15Row()
16.onDragStart((event: DragEvent, extraParams: string) => {
17console.log('Text onDragStarts, ' + extraParams)
18- return this.judge ? this.inner : global()
19+ return this.judge ? this.inner("222") : global()
20})
21Row()
22.onDragStart((event: DragEvent, extraParams: string) => {
23console.log('Text onDragStarts, ' + extraParams)
24return {
25- builder: this.judge ? this.inner() : undefined
26+ builder: this.judge ? this.inner("333") : undefined
27}
28})
29Text('Text')
30--
312.25.1
32
33