fix Unicode Escape Characters (#15318)
This commit is contained in:
@@ -136,7 +136,7 @@ class ArrayStringSegment(ArraySegment):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def text(self) -> str:
|
def text(self) -> str:
|
||||||
return json.dumps(self.value)
|
return json.dumps(self.value, ensure_ascii=False)
|
||||||
|
|
||||||
|
|
||||||
class ArrayNumberSegment(ArraySegment):
|
class ArrayNumberSegment(ArraySegment):
|
||||||
|
Reference in New Issue
Block a user