@cellaware/utils 8.3.1 → 8.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chatwms/datagrid.js +3 -2
- package/package.json +1 -1
package/dist/chatwms/datagrid.js
CHANGED
|
@@ -929,8 +929,9 @@ export function datagridToString(datagridState, rowCnt) {
|
|
|
929
929
|
}
|
|
930
930
|
htmlBuf += '\n\t</tbody>\n</table>';
|
|
931
931
|
if (rowCnt < totalRowCnt) {
|
|
932
|
-
|
|
933
|
-
|
|
932
|
+
const message = `Displaying the first ${rowCnt} rows.`;
|
|
933
|
+
htmlBuf += `<b style="position: relative; top: -8px; left: 8px; font-style: italic;">${message}</b>`;
|
|
934
|
+
markdownBuf += `\n**${message}**\n\n`;
|
|
934
935
|
}
|
|
935
936
|
return {
|
|
936
937
|
html: htmlBuf,
|