Represent empty IV cells as null.
GitOrigin-RevId: 2a087121c7a676e95165b72ed09e002c2323ddd8
This commit is contained in:
parent
17cc3b93f0
commit
33d684d684
@ -787,7 +787,7 @@ pageBlockVerticalAlignmentMiddle = PageBlockVerticalAlignment;
|
|||||||
//@description The content should be bottom-aligned
|
//@description The content should be bottom-aligned
|
||||||
pageBlockVerticalAlignmentBottom = PageBlockVerticalAlignment;
|
pageBlockVerticalAlignmentBottom = PageBlockVerticalAlignment;
|
||||||
|
|
||||||
//@description Represents a cell of a table @text Cell text @is_header True, if it is a header cell
|
//@description Represents a cell of a table @text Cell text; may be null. If the text is null, then the cell should be invisible @is_header True, if it is a header cell
|
||||||
//@colspan The number of columns the cell should span @rowspan The number of rows the cell should span
|
//@colspan The number of columns the cell should span @rowspan The number of rows the cell should span
|
||||||
//@align Horizontal cell content alignment @valign Vertical cell content alignment
|
//@align Horizontal cell content alignment @valign Vertical cell content alignment
|
||||||
pageBlockTableCell text:RichText is_header:Bool colspan:int32 rowspan:int32 align:PageBlockHorizontalAlignment valign:PageBlockVerticalAlignment = PageBlockTableCell;
|
pageBlockTableCell text:RichText is_header:Bool colspan:int32 rowspan:int32 align:PageBlockHorizontalAlignment valign:PageBlockVerticalAlignment = PageBlockTableCell;
|
||||||
|
@ -236,8 +236,8 @@ class WebPageBlockTableCell {
|
|||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}();
|
}();
|
||||||
return td_api::make_object<td_api::pageBlockTableCell>(text.get_rich_text_object(), is_header, colspan, rowspan,
|
return td_api::make_object<td_api::pageBlockTableCell>(text.empty() ? null : text.get_rich_text_object(), is_header,
|
||||||
std::move(align), std::move(valign));
|
colspan, rowspan, std::move(align), std::move(valign));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class StorerT>
|
template <class StorerT>
|
||||||
|
Reference in New Issue
Block a user